Search found 53 matches

by ta1db
Thu Jan 26, 2023 10:26 am
Forum: Raspberry Pi microcontroller boards
Topic: How to build MicroPython for Pico (rp2)?
Replies: 10
Views: 62114

Re: How to build MicroPython for Pico (rp2)?

The instructions for building micropython from source is in https://datasheets.raspberrypi.org/pico/raspberry-pi-pico-python-sdk.pdf Hi, "make BOARD=<BOARD_ID> submodules" required just before the final "make" like .... $ make BOARD=PICO submodules $ make Note: for PICO_W look Appendix A at page 27...
by ta1db
Wed Aug 26, 2020 5:37 am
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

Re: How to Build and Debug MicroPython Source Code with Eclipse

Hi @miltmobley
Thanks for your kind contribution to my post.
I had to do other jobs for a long time. For this reason, unfortunately, I cannot give a detailed answer. I hope to return to this subject at the earliest opportunity and evaluate what they wrote.
by ta1db
Sun May 31, 2020 5:56 pm
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

Re: How to Build and Debug MicroPython Source Code with Eclipse

Above procedure requires STM32CubeProgrammer https://www.st.com/en/development-tools/stm32cubeprog.html and ST LINK GDB Server installations https://www.st.com/resource/en/user_manual/dm00613038-stm32cubeide-stlink-gdb-server-stmicroelectronics.pdf Now, Time to Micropython Application Development wi...
by ta1db
Sat May 30, 2020 7:30 am
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

Re: How to Build and Debug MicroPython Source Code with Eclipse

-- continue -- Following descriptions are all quoted from our private messaging with @stijn, without his help I wouldn't resolve the difficulties Mpy-Cross mpy-cross is the micropython cross compiler utility, used to pre-compile python files into bytecode suitable for running on your target. In ord...
by ta1db
Wed May 20, 2020 7:01 pm
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

Re: How to Build and Debug MicroPython Source Code with Eclipse

Hi @stijn Thanks for your support. The problem was micropython build system is invoking python version 3 as "python3" however this was not supported on my windows installation, I didn't want to change micropython source code so I made a symbolic (soft) link with c:\windows\system32> mklink python3.e...
by ta1db
Wed May 20, 2020 8:02 am
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

Re: How to Build and Debug MicroPython Source Code with Eclipse

jimmo wrote:
Wed May 20, 2020 6:41 am
it would be helpful to know where this is going wrong? i.e. is it a problem with telling it to run this command, or the command doesn't run at all, or it runs with error?
Hi @jimmo, thanks for your kind response, please have look at my edit above.
by ta1db
Tue May 19, 2020 11:56 am
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

Re: How to Build and Debug MicroPython Source Code with Eclipse

Hi @stijn, Thanks for your kind response. Which port do you want to build? I work on stm32, esp8266 and esp32 ports however to start with stm32 is enough for the moment, then I can find my way for other ports. In general its as 'simple' as telling Eclipse to use an existing Makefile (according to in...
by ta1db
Tue May 19, 2020 8:39 am
Forum: Programs, Libraries and Tools
Topic: How to Build and Debug MicroPython Source Code with Eclipse
Replies: 16
Views: 28696

How to Build and Debug MicroPython Source Code with Eclipse

!!! In Windows !!! An Example for STM32F746-DISCO Hi, I am already building and debugging MP source code with traditional ways however the Eclipse IDE with broad plugin selections and capabilities is becoming a standard tool for embedded software development, I am doing all my C and embedded linux ...
by ta1db
Sat Dec 07, 2019 8:38 am
Forum: Other Boards
Topic: Trying to add ethernet support to STM32F407VE
Replies: 5
Views: 4425

Re: Trying to add ethernet support to STM32F407VE

Excellent work guys.. @untitled which ethernet board and driver you use with STMF407VE? I am trying to use a W5100 board with NucleoF401RE and need w5100 c h files. I found a source here https://github.com/Wiznet/ioLibrary_Driver but the w5100 c h files found here need to be reworked for MicroPython...