Page 1 of 1

Micropython IDE for STM32F767ZI Board (Windows 10)

Posted: Mon Feb 18, 2019 11:09 am
by Afzal
Hello,
Right now I am using "uPyCraft IDE" for my "STM32-F767ZI NUCLEO" board on my Windows 10 system,
I am also using PUTTy to code small codes in my board and it runs perfectly with putty but when I am trying it with uPyCraft board is not showing any response.
Any one plssss can help me.Provide me any link if some one work on stm32 and micropython and if there any more suitable IDE for stm-32 board then pleasssss tell us.

thank you

Re: Micropython for STM32F767ZI Board

Posted: Mon Feb 18, 2019 3:49 pm
by dhylands
You can build for the NUCLEO_F767ZI by going to micropython/ports/stm32 and doing:

Code: Select all

make BOARD=NUCLEO_F767Zi

Re: Micropython IDE for STM32F767ZI Board (Windows 10)

Posted: Fri Nov 01, 2019 11:02 am
by chipxx
Hi, I have the same problem but I have the F401RE Core.The problem where I find the path:
micropython/ports/stm32

Then I guess he's got to have a compiler.

Thank you
chipxx (richard) :)

Re: Micropython IDE for STM32F767ZI Board (Windows 10)

Posted: Fri Nov 01, 2019 4:24 pm
by dhylands
The micropython directory will exist wherever you clone the repository to. ports/stm32 will be found inside that micropython directory.

The toolchain needs to be installed someplace on your computer and you need to setup the PATH so that you can run arm-none-eabi-gcc from the command line.

If the toolchain is setup properly you should be able to type:

Code: Select all

arm-none-eabi-gcc
and then get the following error:

Code: Select all

arm-none-eabi-gcc: fatal error: no input files
compilation terminated.