From 857f96d47742e2b4a13ab5c4183eaf924576eb08 Mon Sep 17 00:00:00 2001 From: Paciente8159 Date: Wed, 3 Apr 2024 15:33:52 +0100 Subject: [PATCH] version bump --- CHANGELOG.md | 9 ++++++++- uCNC/src/cnc_build.h | 2 +- uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83e28ec0f..bd7ad48cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,17 @@ # Changelog +## [1.8.11] - 03-04-2024 + +### Fixed + +- fixed interpolator deacceleation steps calculations if time slices less then 1 (#678) + ## [1.8.10] - 29-03-2024 ### Fixed -- prevent floating point round errors in speed calculations when time slices a too small (#673) +- prevent floating point round errors in speed calculations when time slices are too small (#673) ## [1.8.9] - 26-03-2024 @@ -1567,6 +1573,7 @@ Version 1.1.0 comes with many added features and improvements over the previous ### Initial release +[1.8.11]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.11 [1.8.10]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.10 [1.8.9]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.9 [1.8.8]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.8 diff --git a/uCNC/src/cnc_build.h b/uCNC/src/cnc_build.h index 9c716e1d0..7888880c3 100644 --- a/uCNC/src/cnc_build.h +++ b/uCNC/src/cnc_build.h @@ -25,7 +25,7 @@ extern "C" #endif #define CNC_MAJOR_MINOR_VERSION "1.8" -#define CNC_PATCH_VERSION ".10" +#define CNC_PATCH_VERSION ".11" #define CNC_VERSION CNC_MAJOR_MINOR_VERSION CNC_PATCH_VERSION diff --git a/uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c b/uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c index 8afe6bdcc..f8ea60494 100644 --- a/uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c +++ b/uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c @@ -109,7 +109,7 @@ void MCU_SERIAL_ISR(void) COM_UART->CR1 &= ~(USART_CR1_TXEIE); return; } - uint8_t c; + uint8_t c = 0; BUFFER_DEQUEUE(uart_tx, &c); COM_OUTREG = c; }