Search found 6 matches

by divekr
Sun Feb 06, 2022 12:58 pm
Forum: ESP32 boards
Topic: ULP I2C sensor readings.
Replies: 8
Views: 6352

Re: ULP I2C sensor readings.

Dear Christian Walther, It is so much grateful for me to have your reply again. I think I am understanding "WRITE_RTC_REG", thanks to Christian. As you said the ESP32 technical reference manual is so helpful for to understand ULP. I am using ESP32-PICO-V3-02, so I've download " https://www.espressif...
by divekr
Sat Feb 05, 2022 6:33 am
Forum: ESP32 boards
Topic: ULP I2C sensor readings.
Replies: 8
Views: 6352

Re: ULP I2C sensor readings.

I wish I could get my head around accessing the ULP from micropython! I found https://github.com/ThomasWaldmann/py-esp32-ulp/blob/master/examples/counter.py but it crashes because there is no esp32_ulp on my machine. I found a lib of the same name @ https://github.com/ThomasWaldmann/py-esp32-ulp/tr...
by divekr
Sat Feb 05, 2022 3:46 am
Forum: ESP32 boards
Topic: ULP I2C sensor readings.
Replies: 8
Views: 6352

Re: ULP I2C sensor readings.

I don’t think SENS_I2C_SLAVE_ADDR0 is the register’s address, that looks more like a mask. Correlating esp32_technical_reference_manual_en.pdf section 30.8.1 to the stuff in the headers, try # from soc/soc.h #define DR_REG_SENS_BASE 0x3ff48800 # from soc/sens_reg.h #define SENS_SAR_SLAVE_ADDR1_REG ...
by divekr
Fri Feb 04, 2022 2:14 am
Forum: ESP32 boards
Topic: ULP I2C sensor readings.
Replies: 8
Views: 6352

ULP I2C sensor readings.

Greetings! Thanks for the great micropython, v1.18 is awesome for speed :) I am trying to understand how to manage the obscure ULP code, I found https://github.com/ThomasWaldmann/py-esp32-ulp , Thanks to Thomas, I've done a few things with that. It has some limitations(exclude .macro etc), but almos...
by divekr
Sun Oct 10, 2021 5:36 pm
Forum: ESP32 boards
Topic: How to reset cycled ESP32? "Device or recource busy"...
Replies: 7
Views: 7960

Re: How to reset cycled ESP32? "Device or recource busy"...

I think your ESP32 does not have PSRAM, and
flashed wrong type of firmware(GENERIC_SPIRAM)
Try the firmware, BOARD=GENERIC compile option, and flash it.
by divekr
Tue Oct 05, 2021 8:20 am
Forum: ESP32 boards
Topic: LVGL and SD Card won't share SPI bus
Replies: 30
Views: 19094

Re: LVGL and SD Card won't share SPI bus

Great thanks to Thomas, I saw the PR on lvgl repo. I am so happy to find it. SD card works great , at the same time the display works. My devices are, LOLIN D32 pro with builtin SD card slot. with GC9A01 display(no touch module) Is there any performance difference between half_dulplex and full duple...