Search found 30 matches

by ginodecock
Thu Feb 01, 2018 8:06 pm
Forum: ESP-IDF
Topic: I2C crash with release/v3.0 - what's an effective way to debug this?
Replies: 28
Views: 33471

Re: I2C crash with release/v3.0 - what's an effective way to debug this?

Hi, I've got a simular error when the i2c sensor is disconnected. What kind of sensor are you using? Can you paste your exact error message? When it crashes, does it crash over-and-over? yes it's crashing over and over again I am using the tmp102 temperature sensor ESP_ERROR_CHECK failed: esp_err_t...
by ginodecock
Fri Jan 26, 2018 4:55 pm
Forum: ESP-IDF
Topic: I2C crash with release/v3.0 - what's an effective way to debug this?
Replies: 28
Views: 33471

Re: I2C crash with release/v3.0 - what's an effective way to debug this?

Hi,

I've got a simular error when the i2c sensor is disconnected.
by ginodecock
Sun Dec 24, 2017 2:11 pm
Forum: Hardware
Topic: ESP32 WROVER pSRAM Quiescent current
Replies: 7
Views: 11075

Re: ESP32 WROVER pSRAM Quiescent current

This seems to do the trick. :D

These GPIO pins are not used in the schematic of the ESP32 Wrover.

Is the underlying cause the difference between hardware version REV0 en REV1 of the ESP32 chip? :?:
by ginodecock
Wed Dec 20, 2017 9:43 pm
Forum: Hardware
Topic: ESP32 WROVER pSRAM Quiescent current
Replies: 7
Views: 11075

Re: ESP32 WROVER pSRAM Quiescent current

Hi,

I measure when using the same code the esp-wroom-32 uses 7uA and the esp32 wrover uses 80uA. The underlying pcb is also the same.

I wonder what is extra needed for the esp32 wrover to get to the low current usage.

Thanks,
by ginodecock
Tue Dec 19, 2017 9:44 am
Forum: ESP-IDF
Topic: Getting started with idf V3.0.0rc1
Replies: 4
Views: 6016

Getting started with idf V3.0.0rc1

Hi,

Since I started with the latest idf V3.0.0rc1 I receive the warning:
WARNING: Toolchain version is not supported: 1.22.0-61-gab8375a
Expected to see version: 1.22.0-75-gbaf03c2

I wonder what is missing? The development is under windows Msys32

Thanks,
by ginodecock
Sat Jul 08, 2017 9:29 pm
Forum: Report Bugs
Topic: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET
Replies: 23
Views: 29277

Re: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET

@WiFive, you're right. Programming the ulp processor is doable using the assembler macros.
I was able to do temperature logging of the cpu temperature in RTC memory.

@Espressif, a sample of I2C with the ulp processor would be appreciated.

Thanks,
by ginodecock
Tue Jul 04, 2017 7:59 pm
Forum: Report Bugs
Topic: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET
Replies: 23
Views: 29277

Re: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET

Hi, The end product would be more complex. During guarding the temperature sensor is controlled by I2C and the temperature should be displayed on a lcd display with low energy. Here I was hoping that the deep sleep wake up stub would make it doable to do in C-code to: -measure temperature over I2C -...
by ginodecock
Mon Jul 03, 2017 12:33 pm
Forum: ESP-IDF
Topic: deep sleep behavior
Replies: 4
Views: 9949

Re: deep sleep behavior

Hi,

Your sample with deep sleep stub combined with timer would be usefull.

Thanks,
by ginodecock
Sat Jul 01, 2017 3:48 pm
Forum: Report Bugs
Topic: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET
Replies: 23
Views: 29277

Re: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET

Ok,

Thanks for the reply.

I am looking for a solution to periodically log temperature and send result once a day.

How to control the deep sleep timer from deep sleep stub and move a function to ROM?

Thanks,
by ginodecock
Thu Jun 29, 2017 7:13 pm
Forum: Report Bugs
Topic: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET
Replies: 23
Views: 29277

Re: TG0WDT_SYS_RESET after two DEEPSLEEP_RESET

Hi, I also experience WDT reset when enabling a custom Deepsleep stub. Do I have the same bug here: static void RTC_IRAM_ATTR sensor_reading(void) { REG_WRITE(TIMG_WDTFEED_REG(0), 1); if (mcount > 1023){ //prevent array overflow mcount = 0; } if ((mcount * 300) < mnextlog){ //Check when next log rep...