Search found 19 matches

by LisaM
Sat Jul 20, 2019 5:27 pm
Forum: General Discussion and Questions
Topic: New MicroPython release: v1.11
Replies: 7
Views: 5169

Re: New MicroPython release: v1.11

How to use second core? What's tasks work on it? Hopefully someone more knowledgeable about ESP32 can confirm, but I believe that this enables FreeRTOS threads (tasks) to use multiple cores, and that MicroPython threads are based on FreeRTOS threads. You can use the _thread module (which is uhh und...
by LisaM
Thu Aug 09, 2018 9:37 pm
Forum: ESP32 boards
Topic: Use Of NVS data partition
Replies: 2
Views: 2769

Re: Use Of NVS data partition

NVS is supported in my MicroPython port . 24 KB is the default NVS partition size, it can be much larger if needed. I know, but your port isn't compatible with the standard uasyncio (webserver) libs which i'm using heavily, so that's no option... Your main.c does have the NVS option, but the code i...
by LisaM
Thu Aug 09, 2018 4:31 pm
Forum: General Discussion and Questions
Topic: nvram json read write for esp32 & pyboard
Replies: 1
Views: 3216

Re: nvram json read write for esp32 & pyboard

This doesn't work for the ESP32, the RTC memory is cleared during startup (and therefor also after a machine.reset() ).. :(
by LisaM
Thu Aug 09, 2018 4:12 pm
Forum: ESP32 boards
Topic: Use Of NVS data partition
Replies: 2
Views: 2769

Use Of NVS data partition

The ESP32 has an small (24K) NVS partition that can hold nvs data, it is initialized in the app_main function in the main.c file (nvs_flash_init();).
But... how can i use it in MicroPython?

Lisa
by LisaM
Sun Jul 15, 2018 5:11 pm
Forum: ESP32 boards
Topic: OTA
Replies: 7
Views: 9445

Re: OTA

kevinkk525 wrote:
Sun Jul 15, 2018 3:30 pm
uasyncio in loboris fork is exactly the same as the official branch. But I understand that some webserver functionality does not work for you, which nobody yet looked into.
So it's not the same... ;)
by LisaM
Sun Jul 15, 2018 2:48 pm
Forum: ESP32 boards
Topic: OTA
Replies: 7
Views: 9445

OTA

I'm looking how to do OTA with the ESP32 version of MicroPython. However, i haven't found anything about that in this forum. And no, pointing me to the Loboris fork isn't acceptable. In that fork there are incompatible differences with the main branch (like uasyncio) which makes it unuseable for me....
by LisaM
Thu Apr 12, 2018 11:11 pm
Forum: MicroPython pyboard
Topic: W5500 functionality!
Replies: 3
Views: 3927

Re: W5500 functionality!

A ping to Damien on GitHub might be the best way to ensure this is noticed. Already done that, no effect... Work-around: git clone https://github.com/micropython/micropython.git micropython-stm32 cd micropython-stm32/ git submodule update --init git checkout a275cb0f487cd6517760271dc01d369c32600c63...
by LisaM
Tue Apr 03, 2018 4:26 pm
Forum: ESP32 boards
Topic: PsRAM
Replies: 0
Views: 1494

PsRAM

Are there any plans to support PsRAM (SPI-RAM) in the standard micropython version (meaning not the Loboris one)?
It would be nice to have a heap of 4MB instead of 111KB... ;)
by LisaM
Fri Mar 30, 2018 11:42 pm
Forum: ESP32 boards
Topic: RTC in uPy build for ESP32
Replies: 4
Views: 4307

Re: RTC in uPy build for ESP32

After mrSurley's RTC PR went through, RTC is supported and working...
by LisaM
Tue Mar 27, 2018 8:45 pm
Forum: General Discussion and Questions
Topic: State of MicroPython universe (was: of micropython-lib?)
Replies: 52
Views: 48084

Re: State of micropython-lib?

You do not understand that only pfalcon supports his V2.0, all others are still below that version. The new version of uasyncio (V2) does require the non-official fork. I don't know the status of other library modules. So loboris fork is still fine, theoretically. It has to pass some stability test...