2017-05-24 09:32 AM
I have bought an ESPruino Pico for his microprocessor STM32F401CDU6. How can i port into it a program written in MBED?
I am new. How can I programm this chip in c/c++ for my project?
Thanks in advance
#stm32f401cdu6-espruino2017-05-24 01:05 PM
I can only give you my workflow as an example:
1. Configure with CubeMX, use FreeRTOS, SDIO, USB as required and generate Atollic C project
2. In Atollic, convert project to C++. Copy compiler settings from C to C++ (symbols, include paths, etc)
3. For FreeRTOS, use
https://michaelbecker.github.io/freertos-addons/
to allow object member threads, mutexes, queues, etc4. Have fun
2017-05-25 11:19 AM
Thanks