
Release 1.9.0 is available
Re: Release 1.9.0 is available
Oh, uve decided to release 1.9 without f4 hal update?
Re: Release 1.9.0 is available
Yes, this bring a dependency with USB middleware so too risky and I would like to release. This release was waited since 2 month so now I could update the F4 and F7 and USB middleware without too much risk.
Re: Release 1.9.0 is available
ok, no problem for me)
Re: Release 1.9.0 is available
Thank you very much. i really appreciate your effort and time !!!!
Re: Release 1.9.0 is available
Thanks. My collections of cheep-o-boards is now fully supported
Time to update my sketches.
Just a few quick question, for clarification :
- For STM32F401CC and STM32F411CE, "BlackPill" versions is with 25Mhz crystal, and "generic" is with 8Mhz crystal?
- About interrupts need to be
No other changes in code? As, for old sketches, not newer one with new features.

Just a few quick question, for clarification :
- For STM32F401CC and STM32F411CE, "BlackPill" versions is with 25Mhz crystal, and "generic" is with 8Mhz crystal?
- About interrupts
Code: Select all
void irq_handler(HardwareTimer*) {
Code: Select all
void irq_handler(void) {
-
- Posts: 5
- Joined: Mon May 18, 2020 11:42 am
Re: Release 1.9.0 is available
Thank you for releasing the 1.9.0.
I have noticed that HardwareTimer API has changed.
As we may have developped some libraries based on the previous API, is there a preproc #define that identify the platform version (e.g. "1.9.0") so that it will support both releases ?
One may work with the 1.8.0 release instead of the 1.9.0...
Thanks for your hard work
I have noticed that HardwareTimer API has changed.
As we may have developped some libraries based on the previous API, is there a preproc #define that identify the platform version (e.g. "1.9.0") so that it will support both releases ?
One may work with the 1.8.0 release instead of the 1.9.0...
Thanks for your hard work
Re: Release 1.9.0 is available
Yes use the core version:
https://github.com/stm32duino/wiki/wiki ... re-version
https://github.com/stm32duino/wiki/wiki ... re-version
Re: Release 1.9.0 is available
YesBakisha wrote: Fri May 15, 2020 9:15 pm - For STM32F401CC and STM32F411CE, "BlackPill" versions is with 25Mhz crystal, and "generic" is with 8Mhz crystal?
Corect, no other API change.Bakisha wrote: Fri May 15, 2020 9:15 pm - About interruptsneed to beCode: Select all
void irq_handler(HardwareTimer*) {
No other changes in code? As, for old sketches, not newer one with new features.Code: Select all
void irq_handler(void) {