Search found 505 matches

by GonzoG
Tue May 20, 2025 10:57 am
Forum: Let us know a bit about you and your projects
Topic: Introduction post
Replies: 3
Views: 6804

Re: Introduction post

Here's a link to instructions how to add new variant board:
https://github.com/stm32duino/Arduino_C ... 28board%29

But I think you should be able to use generic F407VETx as it uses internal oscillators like MKS board.
by GonzoG
Thu May 08, 2025 10:37 am
Forum: General discussion
Topic: [BluePill] USB Keyboard example doesn't work
Replies: 2
Views: 3273

Re: [BluePill] USB Keyboard example doesn't work

There's no HID joystick library for stm32duino. There is one for arduino boards with ATMega32U (micro, leonardo and clones):
https://github.com/MHeironimus/ArduinoJoystickLibrary
and a fork of it with force feedback support:
https://github.com/YukMingLaw/ArduinoJo ... FFBLibrary
by GonzoG
Wed May 07, 2025 9:19 pm
Forum: General discussion
Topic: PWM on PB5 pin
Replies: 3
Views: 3363

Re: PWM on PB5 pin

@geologic,
there's no support for L051T MCU. Unless you've added it yourself (and may not be done correctly), you had to use different MCU and it may not (probably won't) work.
by GonzoG
Fri Apr 18, 2025 2:01 pm
Forum: General discussion
Topic: Procedure to change EEPROM default sector/base address using STM32Duino?
Replies: 7
Views: 4501

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: 4321

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: 4
Views: 3766

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: 3441

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: 3441

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: 3441

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

Go to advanced search