File tree 4 files changed +22
-3
lines changed
4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change
1
+ 1.0.3
2
+ * correct default pinmux value for UART and SPI to those functions
3
+ * fix string length error in rc_spi_loopback_test
4
+ * add minimum realization case for PI and P controller in rc_filter_pid
5
+ * fix compass heading in 2 DMP orientation options
6
+ * fix uninitialized matrix in rc_altitude example
7
+ * fix spi randomly breaking due to non-initialized struct
8
+ * small documentation improvements
9
+
1
10
1.0.2
2
11
* Add function rc_filter_duplicate()
3
12
* add macro RC_VECTOR_INITIALIZER
Original file line number Diff line number Diff line change
1
+ librobotcontrol (1.0.3) stable; urgency=low
2
+ * correct default pinmux value for UART and SPI to those functions
3
+ * fix string length error in rc_spi_loopback_test
4
+ * add minimum realization case for PI and P controller in rc_filter_pid
5
+ * fix compass heading in 2 DMP orientation options
6
+ * fix uninitialized matrix in rc_altitude example
7
+ * fix spi randomly breaking due to non-initialized struct
8
+ * small documentation improvements
9
+ -- James Strawson <
[email protected] > Fri, 5 Oct 2018 13:59:00 +0000
10
+
11
+
1
12
librobotcontrol (1.0.2) stable; urgency=low
2
13
* Add function rc_filter_duplicate()
3
14
* add macro RC_VECTOR_INITIALIZER
@@ -15,7 +26,6 @@ librobotcontrol (1.0.1) stable; urgency=low
15
26
-- James Strawson <
[email protected] > Thu, 9 Aug 2018 16:58:00 +0000
16
27
17
28
18
-
19
29
librobotcontrol (1.0.0) stable; urgency=low
20
30
* finally, v1.0.0 release!
21
31
* rename package to librobotcontrol
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ BUILDDIR := build
5
5
INCLUDEDIR := include
6
6
SHORTNAME := librobotcontrol.so
7
7
SONAME := librobotcontrol.so.1
8
- FULLNAME := librobotcontrol.so.1.0.2
8
+ FULLNAME := librobotcontrol.so.1.0.3
9
9
TARGET := $(LIBDIR ) /$(FULLNAME )
10
10
RC_VAR_DIR := var/lib/robotcontrol
11
11
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern "C" {
20
20
21
21
#define RC_LIB_VERSION_MAJOR 1
22
22
#define RC_LIB_VERSION_MINOR 0
23
- #define RC_LIB_VERSION_PATCH 2
23
+ #define RC_LIB_VERSION_PATCH 3
24
24
#define RC_LIB_VERSION_HEX ((RC_LIB_VERSION_MAJOR << 16) | \
25
25
(RC_LIB_VERSION_MINOR << 8) | \
26
26
(RC_LIB_VERSION_PATCH))
You can’t perform that action at this time.
0 commit comments