This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

General aspects using a Discovery Board with a STM32F407VG and uVision from Keil and SW4STM32 fon AC6

Hello, some time ago I started to play with CortexM4,

I bought a Discovery Board with a STM32F407VG in order to be programmed with uVision from Keil.

I am developing a project where the money is very restricted, that's why I was using a free licence from Keil.

Everything was working fine until I exceed the program size of 32KB(now I need to pay the license if I want to continue for this way).

I started to look for other option, and gnu-arm-none-eabi with Eclipse seems to be the answer.

The big problem are the peripherals: I need to use UART(to output message on debugging time using the famous "printf()") and SDIO to log some variables from different sensors that require I2C.

In general terms: what are the aspects that I need to consider when I switch those IDEs: from uVision to "System Workbench for STM32" known as SW4STM32.

Parents
  • Hi marianojb,

    You can also evaluate GNU ARM Eclipse. please follow the STM32F4 Blinky project and you'll learn how to blink the LEDs on an emulated DISCOVERY board.

    Since you are a test engineer, you might find useful to know that the project templates include support for full semihosting.

    I personally used semihosting and the emulator to develop the µOS++/CMSIS++ project (I guess 99% of the tests were performed on the emulator and on the synthetic POSIX platform, with extremely rare tests on the physical board).

Reply
  • Hi marianojb,

    You can also evaluate GNU ARM Eclipse. please follow the STM32F4 Blinky project and you'll learn how to blink the LEDs on an emulated DISCOVERY board.

    Since you are a test engineer, you might find useful to know that the project templates include support for full semihosting.

    I personally used semihosting and the emulator to develop the µOS++/CMSIS++ project (I guess 99% of the tests were performed on the emulator and on the synthetic POSIX platform, with extremely rare tests on the physical board).

Children