File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
2
2
Changelog for Neuron Library
3
3
============================
4
+ v1.3.13
5
+ -------------------
6
+ 1. Bugfix: Fix mraa mapping issue for product "ROScube-I ET".
7
+
8
+ v1.3.12
9
+ -------------------
10
+ 1. Bugfix: Fix GPIO mapping error in ROScube-I when kernel >= 5.15.0.
4
11
5
12
v1.3.3
6
13
-------------------
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ endif()
262
262
set (CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_CURRENT_SOURCE_DIR} /postinst;" )
263
263
set (CPACK_GENERATOR "DEB" )
264
264
## Set the package version
265
- set (CPACK_PACKAGE_VERSION "1.3.12 " )
265
+ set (CPACK_PACKAGE_VERSION "1.3.13 " )
266
266
# Set the package name
267
267
set (CPACK_PACKAGE_NAME "neuron-library" )
268
268
# Set the package file format
Original file line number Diff line number Diff line change @@ -62,12 +62,10 @@ API Documentation
62
62
63
63
<a href =" https://iotdk.intel.com/docs/master/mraa/python/ " ><img src =" http://iotdk.intel.com/misc/logos/python.png " /></a >
64
64
65
- Contact Us
66
- ==========
67
65
68
- To ask questions either file issues in github or send emails to Adlink
[email protected] .
69
-
70
- Changelog
66
+ Bump Version
71
67
=========
72
68
73
- Version changelog [ here] ( ADLINK_CHANGELOG ) .
69
+ - Version changelog [ here] ( ADLINK_CHANGELOG ) .
70
+ - Version number: ` CPACK_PACKAGE_VERSION ` in CMakeLists.txt.
71
+ - git tag -a <new_versino>
Original file line number Diff line number Diff line change @@ -123,7 +123,8 @@ mraa_x86_platform()
123
123
if (file_hold != NULL ) {
124
124
if (getline (& line , & len , file_hold ) != -1 ) {
125
125
line [strcspn (line , "\r\n" )] = 0 ;
126
- if (strncmp (line , "ROScube-I" , strlen ("ROScube-I" ) + 1 ) == 0 ) {
126
+ if (strncmp (line , "ROScube-I" , strlen ("ROScube-I" )) == 0 ) {
127
+ // includes ROScube-I, ROScube-I ET
127
128
platform_type = MRAA_ADLINK_ROSCUBE_I ;
128
129
plat = mraa_roscube_i ();
129
130
} else {
You can’t perform that action at this time.
0 commit comments