STM32CubeG0
STM32CubeG0 copied to clipboard
STM32Cube MCU Full Package for the STM32G0 series - (HAL + LL Drivers, CMSIS Core, CMSIS Device, MW libraries plus a set of Projects running on all boards provided by ST (Nucleo, Evaluation and Discov...
This issue is not yet resolved for G0 series https://community.st.com/s/question/0D50X00009XkgBWSAZ/stm32-rtc-loses-one-second-after-each-reset
**Describe the set-up** STM32G031F8P6 IDE Version 1.10.1 / Package Version: 1.6.1 **Describe the bug** The function to clear RXNE flag in LL-Library is missing **How To Reproduce** Function is missing...
The comments in https://github.com/STMicroelectronics/STM32CubeG0/blob/master/Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_system.h#L1021 incorrectly label COMP1 and COMP2 to use EXTI 21 and 22 respectively. As per the reference manual, they use EXTI 17 and 18. **Additional context** If...
When I enable link time optimization (-flto) I get a linker error regarding vTaskSwitchContext(): ``` arm-none-eabi/bin/ld: /tmp/ccP992vo.ltrans0.ltrans.o: in function `PendSV_Handler': :(.text.PendSV_Handler+0x1c): undefined reference to `vTaskSwitchContext' ``` This issue was fixed...
I am using stm32cube ide 1.7.0 and when I use the macro _LL_RTC_CONVERT_BCD2BIN a warning rise. I have wconversion warning flag enable, also, when I call the macro y use...
Inside `I2C_ITAddrCplt `the address flag is reset for - 10bit mode (if event count == 2) - listen is disabled it is **not reset** for - 7bit mode - 10bit...
If User doesn't define USER_VECT_TAB_ADDRESS, Vector Table will never be set with current SystemInit() function. Interrupts won't work with such configuration. Added #else option if User doesn't want to use...
When GCC inlines functions, it ignores the `section` attribute of the inlined function. (This seems to be considered a feature, not a bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=31362, https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78903, etc) `Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h` has: ``` #define...
**Describe the set-up** * STM32G070RBT based custom board. * STM32CubeIDE 1.14.0. * STM32Cube FW_G0 V1.6.2 * Use I2C1 or I2C2 to communicate with CAT24C02TDI EEPROM memory **Describe the bug** When...
The function for checking is the RxErr flag is missing. Despite the fact the RxErr flag is defined in LL-UCPD, it is never used. **Additional context** If you have a...