referencing example. I am not sure if it still works
https://github.com/JAndrassy/my_boards
Search found 47 matches
- Fri Mar 10, 2023 6:45 am
- Forum: General discussion
- Topic: Distributing custom board files... best way to do it?
- Replies: 4
- Views: 7899
- Thu Sep 29, 2022 5:37 am
- Forum: IDE's
- Topic: Modifying board definitions corectly
- Replies: 5
- Views: 10321
- Sat Aug 20, 2022 7:07 am
- Forum: General discussion
- Topic: Debugging with eclipse/sloeber
- Replies: 10
- Views: 6578
Re: Debugging with eclipse/sloeber
I made it work some time ago. The debugging with Sloeber.
For compile options add in boards.txt for your board
BluePill128kswd.build.flags.optimize=-g -Og
BluePill128kswd.compiler.c.extra_flags=-DDEBUG
BluePill128kswd.compiler.cpp.extra_flags=-DDEBUG
BluePill128kswd.compiler.elf2hex.extra_flags ...
For compile options add in boards.txt for your board
BluePill128kswd.build.flags.optimize=-g -Og
BluePill128kswd.compiler.c.extra_flags=-DDEBUG
BluePill128kswd.compiler.cpp.extra_flags=-DDEBUG
BluePill128kswd.compiler.elf2hex.extra_flags ...
- Sun Jul 10, 2022 6:32 am
- Forum: Off topic
- Topic: AT32F403A anyone?
- Replies: 71
- Views: 399298
Re: AT32F403A anyone?
did you try it as STM32F403?
- Sun Jun 19, 2022 5:13 am
- Forum: Libraries & Hardware
- Topic: ArduinoOTA library. Help wanted for stm32duino (F1xx and F4xx done)
- Replies: 2
- Views: 23037
Re: ArduinoOTA library. Help wanted for stm32duino (F1xx and F4xx done)
now all 'F' models are supported, but I tested only F103 BluePill and F411 BlackPill.
F103 has flash pages and F411 has flash sectors
F103 has flash pages and F411 has flash sectors
- Wed Apr 20, 2022 5:23 am
- Forum: Libraries & Hardware
- Topic: Wi-Fi Library for Discovery B-U585I-IOT02A board
- Replies: 2
- Views: 9683
Re: Wi-Fi Library for Discovery B-U585I-IOT02A board
maybe my WiFiEspAT library can be modified for it. the AT commands are similar and it looks like it has what esp AT calls 'passive mode`.
EDIT: on that board the WiFi module is connected over SPI and my library uses Serial.
EDIT: on that board the WiFi module is connected over SPI and my library uses Serial.
- Tue Dec 28, 2021 10:54 am
- Forum: Libraries & Hardware
- Topic: ArduinoOTA library. Help wanted for stm32duino (F1xx and F4xx done)
- Replies: 2
- Views: 23037
Re: ArduinoOTA library. Help wanted for stm32duino
my ArduinoOTA library now supports STM32F1.
- Thu Sep 30, 2021 5:37 am
- Forum: Ideas & suggestions
- Topic: What is Arduino?
- Replies: 4
- Views: 19426
- Wed Sep 01, 2021 8:30 am
- Forum: Projects
- Topic: STM32L432KC OTA using esp32 how to do it?
- Replies: 4
- Views: 6517
Re: STM32L432KC OTA using esp32 how to do it?
my ArduinoOTA library uses a self update approach, where the esp or any other network adapter is just that, a network adapter.
the library supports two ways:
first way is to write the new binary in upper half of the flash and then copy it to run location and reset. this is now supported for SAMD21 ...
the library supports two ways:
first way is to write the new binary in upper half of the flash and then copy it to run location and reset. this is now supported for SAMD21 ...
- Fri Aug 27, 2021 5:11 am
- Forum: IDE's
- Topic: Roger's Core, Arduino IDE 1.8.15 and package_stm_index.json
- Replies: 15
- Views: 16105
Re: Roger's Core, Arduino IDE 1.8.15 and package_stm_index.json
http://dan.drown.org/stm32duino/package_STM32duino_index.json
is for Roger's core
"url" : "http://dan.drown.org/stm32duino/STM32F1-2020.1.17.zip",
"category" : "STM32",
"archiveFileName" : "STM32F1-2020.1.17.zip"
NO IT IS NOT ROGER'S CORE
https://github.com/rogerclarkmelbourne ...