File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11
22Changelog for Neuron Library
33============================
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.
411
512v1.3.3
613-------------------
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ endif()
262262set (CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_CURRENT_SOURCE_DIR} /postinst;" )
263263set (CPACK_GENERATOR "DEB" )
264264## Set the package version
265- set (CPACK_PACKAGE_VERSION "1.3.12 " )
265+ set (CPACK_PACKAGE_VERSION "1.3.13 " )
266266# Set the package name
267267set (CPACK_PACKAGE_NAME "neuron-library" )
268268# Set the package file format
Original file line number Diff line number Diff line change @@ -62,12 +62,10 @@ API Documentation
6262
6363<a href =" https://iotdk.intel.com/docs/master/mraa/python/ " ><img src =" http://iotdk.intel.com/misc/logos/python.png " /></a >
6464
65- Contact Us
66- ==========
6765
68- To ask questions either file issues in github or send emails to Adlink service@adlinktech.com .
69-
70- Changelog
66+ Bump Version
7167=========
7268
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()
123123 if (file_hold != NULL ) {
124124 if (getline (& line , & len , file_hold ) != -1 ) {
125125 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
127128 platform_type = MRAA_ADLINK_ROSCUBE_I ;
128129 plat = mraa_roscube_i ();
129130 } else {
You can’t perform that action at this time.
0 commit comments