Search found 4 matches

by Jeroen88
Wed Dec 27, 2023 1:40 pm
Forum: ESP-IDF
Topic: I2C Interrupt
Replies: 13
Views: 40939

Re: I2C Interrupt

I wanted to do something similar but I understand that using an ISR is impossible. @microcontroller, any ideas how to do this using a task? If I use the Arduino IDE, at what priority should the task run? And is there any possibility to make it asynchronous? If I look at esp32-hal-i2c.c I see that: i...
by Jeroen88
Tue Jan 03, 2023 10:15 am
Forum: ESP-IDF
Topic: esp_aes_gcm_finish(): assert triggered (BUG?)
Replies: 4
Views: 3600

Re: esp_aes_gcm_finish(): assert triggered (BUG?)

Hi all,
The problem is still present in the latest release of the core. I found a fix here: https://git.thc420.dev/blackbeard420/es ... 6f9e2c2bfc

Will it be solved and when?

Best reagrads, Jeroen
by Jeroen88
Tue Feb 26, 2019 2:26 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 443
Views: 906831

Re: What would you like to see in The Next Chip?

I would like to have an accurate core wake up from deep sleep and an accurate ulp wake up at an exact time. Currently timing is dependent on temperature an crystal accuracy. Also I would like to restart the ulp timer at the start of the ulp program, instead of at calling 'halt', to make restarting t...
by Jeroen88
Sun Feb 17, 2019 10:20 am
Forum: ESP-IDF
Topic: Is it possible to log the time between deep sleep wake up stubs function calls?
Replies: 7
Views: 13302

Re: Is it possible to log the time between deep sleep wake up stubs function calls?

I would like to wake up de cpu's by the ULP after exactly 5 minutes, independent off the time the ulp has run (I understand the ulp wake up timer starts again after halt, and when halt is called is dependent on the time the ulp has run), and independent off the time drift of the RTC_SLOW_CLK. Is tha...