Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Paciente8159 committed Apr 3, 2024
1 parent a6bfeea commit 857f96d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion uCNC/src/cnc_build.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 857f96d

Please sign in to comment.