Search found 12 matches

by rx8pilot
Thu Mar 10, 2022 2:08 am
Forum: Development of MicroPython
Topic: [ESP32-S2] Enable UART REPL instead of USB
Replies: 2
Views: 2265

Re: [ESP32-S2] Enable UART REPL instead of USB

There was a bug in the the UART init function.

The latest release seems to have solved it. :D
by rx8pilot
Tue Feb 22, 2022 4:30 am
Forum: Development of MicroPython
Topic: [ESP32-S2] Enable UART REPL instead of USB
Replies: 2
Views: 2265

Re: Enable UART REPL instead of USB

UART0 Output: Looping on boot, but only when I take out the USB lines or change the sdkconfig.board file. Hard to say if I am doing something wrong, or if I am fighting a bug. ESP-ROM:esp32s2-rc4-20191025 Build:Oct 25 2019 rst:0xc (RTC_SW_CPU_RST),boot:0x8 (SPI_FAST_FLASH_BOOT) Saved PC:0x4002547a S...
by rx8pilot
Mon Feb 21, 2022 11:21 pm
Forum: Development of MicroPython
Topic: [ESP32-S2] Enable UART REPL instead of USB
Replies: 2
Views: 2265

[ESP32-S2] Enable UART REPL instead of USB

I have created a custom board with ESP32-S2-WROVER-I. Using an external serial adaptor for programming. I am new to ESP32 and Micropython, but a mid-skill-level programmer for many other microcontrollers. The GENERIC-S2 port compiled just fine, but it appears to be setup for USB REPL. I can see the ...
by rx8pilot
Sat Feb 12, 2022 2:30 am
Forum: General Discussion and Questions
Topic: Setup for Compiling MicroPython firmware - stuck
Replies: 3
Views: 1682

Re: Setup for Compiling MicroPython firmware - stuck

Success! I am not sure where the previous effort went wrong, but starting from scratch (all new VM) everything seems to work just fine. https://docs.espressif.com/projects/esp-idf/en/v4.4/esp32s2/get-started/index.html#get-started-get-esp-idf These instructions work just fine. If you have trouble - ...
by rx8pilot
Fri Feb 11, 2022 7:32 pm
Forum: General Discussion and Questions
Topic: Setup for Compiling MicroPython firmware - stuck
Replies: 3
Views: 1682

Re: Setup for Compiling MicroPython firmware - stuck

Thank you so much for the notes. I believe I went through those steps - but it is entirely possible I messed something up along the way. I am going to make a clean start and see if I can stop and take notes of anything that seems to be an indication of a problem. At this point, I have been trying to...
by rx8pilot
Fri Feb 11, 2022 5:02 am
Forum: General Discussion and Questions
Topic: Setup for Compiling MicroPython firmware - stuck
Replies: 3
Views: 1682

Setup for Compiling MicroPython firmware - stuck

I have spent a few days trying to setup to compile micropython for a custom board that I made. Running a dedicated Ubuntu VM, I installed ESP-IDF and cloned micropython. As best I know how, I followed the smattering of README's, instructions, and forum posts trying to get anything to compile. It see...
by rx8pilot
Thu Feb 03, 2022 7:35 pm
Forum: ESP32 boards
Topic: Can't get REPL after loading micropython on ESP32-S2 Feather
Replies: 13
Views: 28645

Re: Can't get REPL after loading micropython on ESP32-S2 Feather

It sounds like you may need to disable the USB and recompile?

I am having the same issue as the OP and still looking for a solution.
by rx8pilot
Fri Apr 16, 2021 1:20 am
Forum: General Discussion and Questions
Topic: Installing uasyncio V3
Replies: 4
Views: 2960

Re: Installing uasyncio V3

Thank you, makes sense. As a side note, I now know how to compile micropython from source even if it is not needed. :-) As for upip, is that intended to be used from the desktop command line - or just a device running micropython with a network connection? I am using VS Code and trying to figure out...
by rx8pilot
Wed Apr 14, 2021 4:15 am
Forum: General Discussion and Questions
Topic: Installing uasyncio V3
Replies: 4
Views: 2960

Re: Installing uasyncio V3

UPDATE: I learned a few things in the past few hours....uAsyncio is a built-in module and I was running an older version of uPython. I updated the firmware to a newer generic ESP32 build and installed that with esptool utility. To check the version of uasyncio: >>> import uasyncio as asyncio asyncio...
by rx8pilot
Tue Apr 13, 2021 11:38 pm
Forum: General Discussion and Questions
Topic: Installing uasyncio V3
Replies: 4
Views: 2960

Installing uasyncio V3

I am trying to figure out how to install uasyncio V3 and other modules in general. So far, I have tried upip - but that seems so have installed the older version (not even sure how to verify version) I am curious how to manually download and install it (without upip or a network connection). At the ...