Search found 1745 matches

by fpiSTM
Wed Mar 20, 2024 2:57 pm
Forum: IDE's
Topic: Arduino IDE 2 & Debug feature
Replies: 45
Views: 33220

Re: Arduino IDE 2 & Debug feature

In fact since IDE 2.3.x, the debug has been reworked by Arduino.
I'm currently working to support the new way to support debug svd files.

Ref: https://github.com/arduino/arduino-ide/issues/1920
by fpiSTM
Tue Mar 19, 2024 7:03 pm
Forum: General discussion
Topic: I would like to port GNSS Arduino Library to STM32 CUBE IDE
Replies: 1
Views: 182

Re: I would like to port GNSS Arduino Library to STM32 CUBE IDE

Simply create your main. Then the copy the setup. And finally the loop in an infinite loop. Copy the bsp files in your project and that all folks.
by fpiSTM
Wed Mar 13, 2024 9:38 am
Forum: Libraries & Hardware
Topic: Simplifying I2S Bus Implementation on STM32WL55JC1 with Arduino IDE
Replies: 1
Views: 321

Re: Simplifying I2S Bus Implementation on STM32WL55JC1 with Arduino IDE

HAL_I2S_MODULE_ENABLED is defined by default. You should check the system core clock config to see of the I2S is correctly configured. Then you can simply call the HAL I2S API. Pay attention to the IRQ handler definition if you are in Cpp file, it have to be prefixed by extern "C". You can...
by fpiSTM
Wed Mar 13, 2024 9:31 am
Forum: General discussion
Topic: SPI.end() hangs on maple mini
Replies: 2
Views: 290

Re: SPI.end() hangs on maple mini

By default, the SPI instance is mapped to the SPI1, anyway, it is easy to override it to use the SPI2 and linked pins. You can read the wiki: https://github.com/stm32duino/Arduino_Core_STM32/blob/main/libraries/SPI/README.md#change-default-spi-instance-pins So first way is simply to change pins at r...
by fpiSTM
Mon Mar 04, 2024 8:11 am
Forum: Let us know a bit about you and your projects
Topic: hi, Yves from Brest in Brittany.
Replies: 1
Views: 189

Re: hi, Yves from Brest in Brittany.

Bonjour Yves et bienvenue.
You can find here an example of cube project to Arduino.
viewtopic.php?p=669#p669
by fpiSTM
Tue Feb 27, 2024 5:37 pm
Forum: General discussion
Topic: Problem Uploading to STM32F405 from Arduino IDE
Replies: 3
Views: 414

Re: Problem Uploading to STM32F405 from Arduino IDE

So you used dfu? And you shorten the boot0 pin? Then press reset?
The STM32CubeProgrammer is well installed?
The bord is recognized as stm32bootloader ?
by fpiSTM
Fri Feb 23, 2024 7:56 am
Forum: General discussion
Topic: Nucleo F446ZET6 Support in STM32duino 2.3.0?
Replies: 1
Views: 403

Re: Nucleo F446ZET6 Support in STM32duino 2.3.0?

This board is supported since 2.7.0:
https://github.com/stm32duino/Arduino_C ... /pull/2108

Simply update to the latest core.
by fpiSTM
Thu Feb 22, 2024 9:01 am
Forum: General discussion
Topic: How to use PC14/PC15 as GPIO on STM32F407VGT6
Replies: 5
Views: 441

Re: How to use PC14/PC15 as GPIO on STM32F407VGT6

I've tested with a disco F407, LSE is not fitted so PC14 and PC15 are free.
Using default blink sketch using those pins and it works.
Maybe pio do some extra config preventing to use them...
Test with Arduino IDE.
by fpiSTM
Wed Feb 21, 2024 5:18 am
Forum: General discussion
Topic: How to use PC14/PC15 as GPIO on STM32F407VGT6
Replies: 5
Views: 441

Re: How to use PC14/PC15 as GPIO on STM32F407VGT6

Which board you select to build?
Code?

Go to advanced search