Is it possible to freely use the RTC Fast Memory for data storage? I would like to use it to store data during deep sleep. But I am unclear if the default wakeup stub resides there.
Thanks.
Search found 8 matches
- Fri Sep 28, 2018 5:05 am
- Forum: ESP-IDF
- Topic: Can I use RTC Fast Memory without a wakeup stub?
- Replies: 1
- Views: 3164
- Sun Sep 16, 2018 10:37 pm
- Forum: ESP-IDF
- Topic: flash frequency does't change to 80Mhz
- Replies: 4
- Views: 7281
Re: flash frequency does't change to 80Mhz
ESP_Angus,
Thanks for the response. It was helpful. Sorry I didn't reply earlier. This set up the first phase correctly for me.
mos flash --esp-flash-params dio,32m,80m
I had trouble getting the flash size right. I thought 4m for 4 megabyte and it would error. 32m worked.
Paul
Thanks for the response. It was helpful. Sorry I didn't reply earlier. This set up the first phase correctly for me.
mos flash --esp-flash-params dio,32m,80m
I had trouble getting the flash size right. I thought 4m for 4 megabyte and it would error. 32m worked.
Paul
- Mon Sep 10, 2018 9:47 pm
- Forum: ESP-IDF
- Topic: flash frequency does't change to 80Mhz
- Replies: 4
- Views: 7281
Re: flash frequency does't change to 80Mhz
Adafruit Huzzah32
Mongoose-os
Mongoose-os
- Sun Sep 09, 2018 6:29 pm
- Forum: ESP-IDF
- Topic: flash frequency does't change to 80Mhz
- Replies: 4
- Views: 7281
flash frequency does't change to 80Mhz
My sdkconfig file has this: CONFIG_ESPTOOLPY_FLASHFREQ_80M=y CONFIG_ESPTOOLPY_FLASHFREQ_40M= CONFIG_ESPTOOLPY_FLASHFREQ_26M= CONFIG_ESPTOOLPY_FLASHFREQ_20M= CONFIG_ESPTOOLPY_FLASHFREQ="80m" But the second stage boot message is this: [Sep 9 10:52:25.021] [0;32mI (29) boot: ESP-IDF v3.0-r11 2nd stage ...
- Fri Sep 07, 2018 4:56 am
- Forum: General Discussion
- Topic: BTA_DISABLE_DELAY set to 200 ms
- Replies: 1
- Views: 4355
BTA_DISABLE_DELAY set to 200 ms
When I execute this code void deep_sleep_start(void){ ESP_ERROR_CHECK(esp_wifi_stop()); ESP_ERROR_CHECK(esp_bluedroid_disable()); ESP_ERROR_CHECK(esp_bluedroid_deinit()); ESP_ERROR_CHECK(esp_bt_controller_disable()); ESP_ERROR_CHECK(esp_bt_controller_deinit()); ESP_ERROR_CHECK(esp_sleep_enable_ulp_w...
- Wed Jun 06, 2018 2:09 pm
- Forum: Hardware
- Topic: proper register set up for ULP I2C read or write?
- Replies: 0
- Views: 3353
proper register set up for ULP I2C read or write?
My i2c read seems to block / stall my ULP code. I am using legacy macros, and needed to write the macro for the read and write instruction - which I posted to another thread. But not sure why it stalls. Also no indication of pin activity on SCL. Here is my register setup. Note: I tried using rtc_gpi...
- Wed Jun 06, 2018 7:31 am
- Forum: ESP-IDF
- Topic: legacy macro for i2c read and write
- Replies: 1
- Views: 3214
Re: legacy macro for i2c read and write
For what its worth here is the missing macros I defined. The i2c fields are defined in ulp.h. However when I run this opcode in the ulp it appears to stall and my ulp code does not wake up from deep sleep. I have tried setting things up the registers as per the technical reference. Does anyone have ...
- Tue Jun 05, 2018 2:01 pm
- Forum: ESP-IDF
- Topic: legacy macro for i2c read and write
- Replies: 1
- Views: 3214
legacy macro for i2c read and write
I'm programming the ulp processor using legacy macros. I looked at ulp.h. I don't see a macro defined for i2c_rd and i2c_wr. I assume it would be I_I2C_RD and I_I2C_WR. I see the opcode bit definitions in ulp_insn_t but no macros. Did I miss something?