Arduino Pro IDE and STM32
- mpetrasinovic
- Posts: 8
- Joined: Fri Apr 17, 2020 1:25 pm
- Location: Belgrade, Serbia
- Contact:
Arduino Pro IDE and STM32
Is someone able to use STM32 boards with Arduino Pro IDE?
Re: Arduino Pro IDE and STM32
I never tried yet, I have to test it in the coming weeks
- mpetrasinovic
- Posts: 8
- Joined: Fri Apr 17, 2020 1:25 pm
- Location: Belgrade, Serbia
- Contact:
Re: Arduino Pro IDE and STM32
I have managed to compile the sketch for STM32 using the 0.1.1 version of Arduino Pro IDE, the next step is definitely debugger!
Re: Arduino Pro IDE and STM32
Fine. Yes the debugger would be definitely the best feature.mpetrasinovic wrote: Tue Sep 01, 2020 8:54 am I have managed to compile the sketch for STM32 using the 0.1.1 version of Arduino Pro IDE, the next step is definitely debugger!
Re: Arduino Pro IDE and STM32
I can step debug the Blue Pill in Eclipse Sloeber with ST-Link.
I have in boards.txt in my_boards custom definitions (https://github.com/jandrassy/my_boards) this lines added
BluePill128kswd.build.flags.optimize=-g -Og
BluePill128kswd.compiler.c.extra_flags=-DDEBUG
BluePill128kswd.compiler.cpp.extra_flags=-DDEBUG
BluePill128kswd.compiler.elf2hex.extra_flags=--debugging
other lines in this boards.txt are only to have less options to select when I select the board
I have in boards.txt in my_boards custom definitions (https://github.com/jandrassy/my_boards) this lines added
BluePill128kswd.build.flags.optimize=-g -Og
BluePill128kswd.compiler.c.extra_flags=-DDEBUG
BluePill128kswd.compiler.cpp.extra_flags=-DDEBUG
BluePill128kswd.compiler.elf2hex.extra_flags=--debugging
other lines in this boards.txt are only to have less options to select when I select the board
- mpetrasinovic
- Posts: 8
- Joined: Fri Apr 17, 2020 1:25 pm
- Location: Belgrade, Serbia
- Contact:
Re: Arduino Pro IDE and STM32
Have you tried Arduino Pro IDE?Juraj wrote: Tue Sep 01, 2020 4:15 pm I can step debug the Blue Pill in Eclipse Sloeber with ST-Link.
I have in boards.txt in my_boards custom definitions (https://github.com/jandrassy/my_boards) this lines added
BluePill128kswd.build.flags.optimize=-g -Og
BluePill128kswd.compiler.c.extra_flags=-DDEBUG
BluePill128kswd.compiler.cpp.extra_flags=-DDEBUG
BluePill128kswd.compiler.elf2hex.extra_flags=--debugging
other lines in this boards.txt are only to have less options to select when I select the board