Search found 1963 matches
- Thu Aug 14, 2025 9:09 pm
- Forum: General discussion
- Topic: STM32FreeRTOS config bugged.
- Replies: 8
- Views: 5838
Re: STM32FreeRTOS config bugged.
I'm ooo. I will test it when back.
- Thu Aug 14, 2025 1:32 pm
- Forum: General discussion
- Topic: STM32FreeRTOS config bugged.
- Replies: 8
- Views: 5838
Re: STM32FreeRTOS config bugged.
Which core you used with the library?
- Mon Jul 28, 2025 1:33 pm
- Forum: Announcements
- Topic: STM32 core release 2.11.0
- Replies: 0
- Views: 7134
STM32 core release 2.11.0
Main features:
* STM32WB0x support
* several STM32 HAL/LL update
And several fixes, new boards support, enhancements,...
Release Note here:
https://github.com/stm32duino/Arduino_C ... tag/2.11.0
* STM32WB0x support
* several STM32 HAL/LL update
And several fixes, new boards support, enhancements,...
Release Note here:
https://github.com/stm32duino/Arduino_C ... tag/2.11.0
- Fri Jul 18, 2025 3:30 pm
- Forum: General discussion
- Topic: Debugging H5 and/or H7 from within Arduino IDE: Can't get it to work
- Replies: 5
- Views: 1525
Re: Debugging H5 and/or H7 from within Arduino IDE: Can't get it to work
No luck here. Just openocd issue... which can become a nightmare. Debug under Arduino IDE is very young and need some improvement.
- Fri Jul 18, 2025 2:39 pm
- Forum: General discussion
- Topic: Debugging H5 and/or H7 from within Arduino IDE: Can't get it to work
- Replies: 5
- Views: 1525
Re: Debugging H5 and/or H7 from within Arduino IDE: Can't get it to work
One other way is to use cmake then launch your project thanks STM32CubeIDE.
- Fri Jul 18, 2025 2:08 pm
- Forum: General discussion
- Topic: Debugging H5 and/or H7 from within Arduino IDE: Can't get it to work
- Replies: 5
- Views: 1525
Re: Debugging H5 and/or H7 from within Arduino IDE: Can't get it to work
Hi memotronics
unfortunately the official openocd does not support the H5 that's why you can't use it and yes ST have a customized one supporting it...
Don't ask me why it is not upstream yet... I don't know nor understand. :?
H7 is supported.
Her the list of target support by the openocd ...
unfortunately the official openocd does not support the H5 that's why you can't use it and yes ST have a customized one supporting it...
Don't ask me why it is not upstream yet... I don't know nor understand. :?
H7 is supported.
Her the list of target support by the openocd ...
- Thu Jul 17, 2025 5:02 am
- Forum: General discussion
- Topic: [BluePill+] problem with USART interrups
- Replies: 7
- Views: 2145
Re: [BluePill+] problem with USART interrups
If you used USB you should be able to define HAL_UART_MODULE_ONLY then no need to change core file.
- Tue Jul 15, 2025 10:52 am
- Forum: General discussion
- Topic: L0/L1 internal EEPROM
- Replies: 1
- Views: 4377
Re: L0/L1 internal EEPROM
If you used the EEPROM library it will use the internal eeprom Instead of the flash emulation.
- Sat Jul 12, 2025 12:23 pm
- Forum: General discussion
- Topic: [BluePill+] problem with USART interrups
- Replies: 7
- Views: 2145
Re: [BluePill+] problem with USART interrups
That is normal. The handler is already defined for the serial. You have to comment it in the core if you want use Serial. Else you can define the HAL_UART_MODULE_ONLY but Serial instance will be disabled.
https://github.com/stm32duino/Arduino_C ... odule-only
https://github.com/stm32duino/Arduino_C ... odule-only
- Sat Jul 12, 2025 10:06 am
- Forum: General discussion
- Topic: [BluePill+] problem with USART interrups
- Replies: 7
- Views: 2145
Re: [BluePill+] problem with USART interrups
Code: Select all
extern "C" void USART3_IRQHandler(void)