Search found 6 matches

by JF002
Sun Nov 13, 2016 8:44 pm
Forum: Development of MicroPython
Topic: Development environment for MicroPython on Linux?
Replies: 4
Views: 4951

Re: Development environment for MicroPython on Linux?

Yeah, of course, the debugger is not the answer to all the possible types of issues. I'm trying to attach the debugger in order to follow the flow of the code and understand how it works. BTW, I found a solution for my issue with the debugger... My Linux box is in fact a VirtualBox virtual machine. ...
by JF002
Sat Nov 12, 2016 10:17 am
Forum: Development of MicroPython
Topic: Development environment for MicroPython on Linux?
Replies: 4
Views: 4951

Re: Development environment for MicroPython on Linux?

Thanks for sharing your experiences :) It's a good thing that MicroPython runs on x86! This way, we can debug it without the constraints of an embedded platform. But... it's the low-level part of the code that I would like to debug (processor initialisation, peripherals configuration,...), and see i...
by JF002
Fri Nov 11, 2016 2:48 pm
Forum: Development of MicroPython
Topic: Development environment for MicroPython on Linux?
Replies: 4
Views: 4951

Development environment for MicroPython on Linux?

Hi, I run MicroPython on my STM32F7Disco board. I manage to build/run it fairly easy. Now, I would like to run the code in a debugging environment, modify the code, debug, single stepping,... I'm used to do this in Windows, using J-Link and IAR and tools from the projet GNU ARM Eclipse. I would like...
by JF002
Mon Nov 07, 2016 9:05 pm
Forum: Other Boards
Topic: SDCard on STM32F7-Disco
Replies: 1
Views: 2924

SDCard on STM32F7-Disco

Hello, I'm trying to make the SD card work on the board STM32F7-Disco. Is the support for SDCard implemented on this board? I formatted a 8GB µSDcard in FAT32, plugged it in the µSD slot of the board and issued a soft reset (CTRL+D). The following message is printed on the REPL : PYB: sync filesyste...
by JF002
Sun Nov 06, 2016 4:08 pm
Forum: Other Boards
Topic: How to build and run MicroPython on STM32F7-Disco board
Replies: 7
Views: 21711

Re: How to build and run MicroPython on STM32F7-Disco board

You're right, all the information were already available...
But I spent some time to put them together, and I thought it would be useful for anyone who wants to start micropython on is STM32F4 disco board :)

Btw, thanks for the links!
by JF002
Sat Nov 05, 2016 7:11 pm
Forum: Other Boards
Topic: How to build and run MicroPython on STM32F7-Disco board
Replies: 7
Views: 21711

How to build and run MicroPython on STM32F7-Disco board

Hi! I recently discovered the MicroPython project, and I wanted to give it a try. After some research, I found out that MicroPython is ported to the STM32F7 microcontroller, and the STM32F7-Disco board. Nice, I have one laying around! I did not find complete documentation about building and running ...