Search found 8 matches

by pwiner99
Fri Sep 28, 2018 5:05 am
Forum: ESP-IDF
Topic: Can I use RTC Fast Memory without a wakeup stub?
Replies: 1
Views: 3056

Can I use RTC Fast Memory without a wakeup stub?

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.
by pwiner99
Sun Sep 16, 2018 10:37 pm
Forum: ESP-IDF
Topic: flash frequency does't change to 80Mhz
Replies: 4
Views: 7062

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
by pwiner99
Mon Sep 10, 2018 9:47 pm
Forum: ESP-IDF
Topic: flash frequency does't change to 80Mhz
Replies: 4
Views: 7062

Re: flash frequency does't change to 80Mhz

Adafruit Huzzah32
Mongoose-os
by pwiner99
Sun Sep 09, 2018 6:29 pm
Forum: ESP-IDF
Topic: flash frequency does't change to 80Mhz
Replies: 4
Views: 7062

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 ...
by pwiner99
Fri Sep 07, 2018 4:56 am
Forum: General Discussion
Topic: BTA_DISABLE_DELAY set to 200 ms
Replies: 1
Views: 4215

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...
by pwiner99
Wed Jun 06, 2018 2:09 pm
Forum: Hardware
Topic: proper register set up for ULP I2C read or write?
Replies: 0
Views: 3264

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...
by pwiner99
Wed Jun 06, 2018 7:31 am
Forum: ESP-IDF
Topic: legacy macro for i2c read and write
Replies: 1
Views: 3092

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 ...
by pwiner99
Tue Jun 05, 2018 2:01 pm
Forum: ESP-IDF
Topic: legacy macro for i2c read and write
Replies: 1
Views: 3092

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?