Search found 3 matches

by maciej
Tue Feb 13, 2018 12:13 pm
Forum: General Discussion
Topic: esp_wifi_set_ps(WIFI_PS_MODEM), BLE, and light sleep?
Replies: 9
Views: 19840

Re: esp_wifi_set_ps(WIFI_PS_MODEM), BLE, and light sleep?

vonnieda wrote:
ESP_igrr wrote:4. Sounds like a bug, could you please report it on GitHub, along with steps to reproduce?
Thank you for the response ESP_igrr, much appreciated! I will narrow down the bug in #4 and file an issue.

Thanks,
Jason
Hi,
have you created an issue for this? I have same situation... :(
by maciej
Mon Feb 05, 2018 12:11 pm
Forum: ESP-IDF
Topic: 'Relocation truncated to fit' error when moving adc_channel to bss section in ulp_adc_example
Replies: 2
Views: 4094

Re: 'Relocation truncated to fit' error when moving adc_channel to bss section in ulp_adc_example

The third argument to the ADC instruction has to be a literal value, not a pointer or a register. adc r1, 0, adc_channel + 1 means that you are doing ADC conversion with the ADC channel number set to the address of 'adc_channel' variable, which is probably not what you want. Thank you for your repl...
by maciej
Sat Feb 03, 2018 5:07 pm
Forum: ESP-IDF
Topic: 'Relocation truncated to fit' error when moving adc_channel to bss section in ulp_adc_example
Replies: 2
Views: 4094

'Relocation truncated to fit' error when moving adc_channel to bss section in ulp_adc_example

Hi, I would like to control adc channel used in ULP program same as thresholds in ulp_adc_example . I moved /* ADC1 channel 6, GPIO34 */ .set adc_channel, 6 to .bss .global adc_channel adc_channel: .long 0 and use adc_channel as adc param adc r1, 0, adc_channel + 1 This change introduce compile erro...