Search found 491 matches

by GonzoG
Fri Apr 18, 2025 2:01 pm
Forum: General discussion
Topic: Procedure to change EEPROM default sector/base address using STM32Duino?
Replies: 5
Views: 224

Re: Procedure to change EEPROM default sector/base address using STM32Duino?

Emulated eeprom always uses 2 sectors of flash memory. It won't work for long with just one.
In case of your MCU it should use sectors 2 and 3: https://www.st.com/resource/en/applicat ... ronics.pdf
by GonzoG
Sun Mar 30, 2025 10:44 pm
Forum: General discussion
Topic: Pulse Counter
Replies: 9
Views: 485

Re: Pulse Counter

There's an example in STM examples how to use timers in input capture mode.
File->Examples->STM32duino Examples->Peripherals->HardwareTimer
by GonzoG
Sun Mar 23, 2025 9:01 am
Forum: General discussion
Topic: Migration - need more GPIO
Replies: 3
Views: 440

Re: Migration - need more GPIO

If you're using STM core (without MCU dedicated libraries) code should work with any STM32 MCU. Only difference that you may have is different pins may be assigned to peripherals.
by GonzoG
Sat Mar 22, 2025 7:18 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Nucleo-H533re support?
Replies: 5
Views: 268

Re: Nucleo-H533re support?

Composite Adding you MCU/board you don't have to configure anything. Some defaults just may need to be set differently.

For example, Serial is usually assigned to PA0/PA1 (for not added MCUs), whereas in STM32duino it usually is assigned to PA9/PA10.
For MCUs with LPUART (like H533RET) you may ...
by GonzoG
Sat Mar 22, 2025 5:31 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Nucleo-H533re support?
Replies: 5
Views: 268

Re: Nucleo-H533re support?

Composite All GPIO mappings are done for almost every MCU in STM lineup. For most MCUs you only need to add clock config and sometimes do some changes in default pin assignments (default Serial, IIC, SPI, etc). There are also entries for boards.txt for generic variants, just need to copy them ...
by GonzoG
Sat Mar 22, 2025 12:55 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Nucleo-H533re support?
Replies: 5
Views: 268

Re: Nucleo-H533re support?

You can add it yourself and then open PR on github to include it in next release:
https://github.com/stm32duino/Arduino_C ... 28board%29
by GonzoG
Wed Mar 19, 2025 8:32 pm
Forum: General discussion
Topic: Slow Build again
Replies: 5
Views: 533

Re: Slow Build again

@Jimbo1326 yes. Latest version 2.3.4
by GonzoG
Mon Mar 17, 2025 11:39 am
Forum: General discussion
Topic: Slow Build again
Replies: 5
Views: 533

Re: Slow Build again

There must something with your PC or windows setup.
I have bit faster PC (Ryzen 5 5500 with nvme SSD) and it takes about 30 seconds to do first compile and 7s to recompile.
by GonzoG
Mon Mar 17, 2025 10:50 am
Forum: General discussion
Topic: What is the difference between Board part numbers?
Replies: 7
Views: 550

Re: What is the difference between Board part numbers?

"Bouar part number" it's just to automate some hardware setups like clocks (if board has external oscillator or uses internal), default pins (like buttons, LEDs, default SPI, IIC, etc).
"Generic" variants always use internal oscillator and usually do not have buttons and LEDs defined. So it will ...
by GonzoG
Mon Mar 17, 2025 10:35 am
Forum: General discussion
Topic: Arduino output code can be opened for debug in cubeIDE?
Replies: 2
Views: 377

Re: Arduino output code can be opened for debug in cubeIDE?

You can debug directly in Arduino IDE.

Go to advanced search