Skip to content

Commit 52f44ee

Browse files
committed
Bugfix: Fix mraa mapping issue for product "ROScube-I ET".
1 parent 0ae3aa1 commit 52f44ee

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

ADLINK_CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

22
Changelog 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

512
v1.3.3
613
-------------------

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ endif()
262262
set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_CURRENT_SOURCE_DIR}/postinst;")
263263
set(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
267267
set(CPACK_PACKAGE_NAME "neuron-library")
268268
# Set the package file format

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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 [email protected] .
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>

src/x86/x86.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)