Programing the STM32MP157C-DK2 using Arduino IDE/language

Hi,

I will be using the STM32MP157C-DK2 (https://www.st.com/content/st_com/en/pr ... l#overview) and I want to program it using Arduino as it is easier for some of the tasks I want to do (UART communication).

I have no experience with the Arduino IDE/language, so I have a few questions.

  • Is it possible to program GUI in Arduino language? What if I wanted to use other graphic frameworks such as X-CUBE-TOUCHGFX made specifically for STM32 boards?

  • Do I need to take any extra considerations/seps when using Arduino IDE for programming in a STM board?

  • Would you recommend me a different software compatible with Arduino language instead? Which ones?

Thank you.

Bump

Hello ,I am using this board but I don't know how to use the gpio pins I want to make a simple thing like to blynk an led?

You can also try here for a response: https://www.stm32duino.com/

Most of the arduino program works on stm32 , you need to change the names of the pins. Example for LCD.
//#include <LiquidCrystal.h>
//LiquidCrystal lcd(PA0, PA1, PA2, PA3, PA4, PA5);

The STM32MP1 runs the Cortex A-series processors, definitely not something for beginners, and even experienced Arduino users would probably have a hard time with it. You're probably better off starting with an STM32F0 or STM32F4 based MCU than a full blown MPU such as the STM32MP1

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.