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.
Search found 52 matches
- Wed Aug 26, 2020 5:37 am
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
- Sun May 31, 2020 5:56 pm
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
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...
- Sat May 30, 2020 7:30 am
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
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...
- Wed May 20, 2020 7:01 pm
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
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...
- Wed May 20, 2020 8:02 am
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
Re: How to Build and Debug MicroPython Source Code with Eclipse
Hi @jimmo, thanks for your kind response, please have look at my edit above.
- Tue May 19, 2020 11:56 am
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
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...
- Tue May 19, 2020 8:39 am
- Forum: Programs, Libraries and Tools
- Topic: How to Build and Debug MicroPython Source Code with Eclipse
- Replies: 15
- Views: 3319
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 ...
- Sat Dec 07, 2019 11:57 am
- Forum: Drivers for External Components
- Topic: Using the ESP with a Ethernet Port through SPI
- Replies: 15
- Views: 6456
- Sat Dec 07, 2019 8:38 am
- Forum: Other Boards
- Topic: Trying to add ethernet support to STM32F407VE
- Replies: 5
- Views: 1440
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...
- Sat Dec 07, 2019 8:22 am
- Forum: Drivers for External Components
- Topic: Using the ESP with a Ethernet Port through SPI
- Replies: 15
- Views: 6456
Re: Using the ESP with a Ethernet Port through SPI
@Roberthh Thanks for your prompt feedback.. I have a W5100 board in my hand and I prefer to use it if I can. As far as I see the MicroPython official repository doesn't have w5100 c h files required for this. I found a source here: https://github.com/Wiznet/ioLibrary_Driver however the w5100 c h fil...