File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed
Expand file tree Collapse file tree 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+
1101.0.2
211 * Add function rc_filter_duplicate()
312 * 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+
112librobotcontrol (1.0.2) stable; urgency=low
213 * Add function rc_filter_duplicate()
314 * add macro RC_VECTOR_INITIALIZER
@@ -15,7 +26,6 @@ librobotcontrol (1.0.1) stable; urgency=low
1526 -- James Strawson <
[email protected] > Thu, 9 Aug 2018 16:58:00 +0000
1627
1728
18-
1929librobotcontrol (1.0.0) stable; urgency=low
2030 * finally, v1.0.0 release!
2131 * rename package to librobotcontrol
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ BUILDDIR := build
55INCLUDEDIR := include
66SHORTNAME := librobotcontrol.so
77SONAME := librobotcontrol.so.1
8- FULLNAME := librobotcontrol.so.1.0.2
8+ FULLNAME := librobotcontrol.so.1.0.3
99TARGET := $(LIBDIR ) /$(FULLNAME )
1010RC_VAR_DIR := var/lib/robotcontrol
1111
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern "C" {
2020
2121#define RC_LIB_VERSION_MAJOR 1
2222#define RC_LIB_VERSION_MINOR 0
23- #define RC_LIB_VERSION_PATCH 2
23+ #define RC_LIB_VERSION_PATCH 3
2424#define RC_LIB_VERSION_HEX ((RC_LIB_VERSION_MAJOR << 16) | \
2525 (RC_LIB_VERSION_MINOR << 8) | \
2626 (RC_LIB_VERSION_PATCH))
You can’t perform that action at this time.
0 commit comments