Search found 1365 matches

by Ritesh
Sat Jul 01, 2017 10:38 am
Forum: ESP-IDF
Topic: UART: Unable to transmit data
Replies: 3
Views: 6152

Re: UART: Unable to transmit data

I'm using an MTK3339 GPS module with UART1 in pins 16 (RX) & 17 (TX). I can read data coming from the GPS module with uart_read_bytes() on UART1, but I can't get uart_write_bytes() working to send commands to the module (see: https://cdn-shop.adafruit.com/datasheets/PMTK_A11.pdf ). I've tried sendi...
by Ritesh
Sat Jul 01, 2017 10:27 am
Forum: ESP-IDF
Topic: Need help to understand RF Calibration init data management and it's process for ESP32
Replies: 2
Views: 4908

Need help to understand RF Calibration init data management and it's process for ESP32

Hi, Recently, I started to look for PHY init data management into ESP32 w.r.t. Calibration process as well. I have looked into make menuconfig configurations and found total 3 configurations for RF Phy Init Data configuration. 1) Default RF Calibration at boot time 2) Customize RF init data using Pa...
by Ritesh
Fri Jun 30, 2017 7:17 am
Forum: ESP-IDF
Topic: Getting Guru Meditation Exception while using Hardware Timer
Replies: 8
Views: 9438

Re: Getting Guru Meditation Exception while using Hardware Timer

Alternatively, replace ESP_INTR_FLAG_IRAM with ESP_INTR_FLAG_DEFAULT when you are registering the interrupt. Then the interrupt will be automatically disabled at times when cache is disabled. You will be able to call non-IRAM functions from ISR in this case. Hi, Thanks for quick reply. I will check...
by Ritesh
Fri Jun 30, 2017 7:17 am
Forum: ESP-IDF
Topic: Getting Guru Meditation Exception while using Hardware Timer
Replies: 8
Views: 9438

Re: Getting Guru Meditation Exception while using Hardware Timer

WiFive wrote:Do it the way the example does in the ISR by setting timer struct members directly. Which is what I said the first time.
Hi,

Thanks for quick reply. I will check and let you know result for that.
by Ritesh
Fri Jun 30, 2017 1:29 am
Forum: ESP-IDF
Topic: Getting Guru Meditation Exception while using Hardware Timer
Replies: 8
Views: 9438

Re: Getting Guru Meditation Exception while using Hardware Timer

WiFive wrote:Check inside your 2 ISR for timer_set_alarm_value
So, How can I set alarm value in my both ISR calls?
by Ritesh
Thu Jun 29, 2017 11:14 pm
Forum: ESP-IDF
Topic: Getting Guru Meditation Exception while using Hardware Timer
Replies: 8
Views: 9438

Re: Getting Guru Meditation Exception while using Hardware Timer

timer_set_alarm_value is not IRAM_ATTR function. Check methods inside ISR in example https://github.com/espressif/esp-idf/blob/7522b5342320d73036a54501b1773889ecd36c05/examples/peripherals/timer_group/main/timer_group_example_main.c Hi, I didn't get your point. We have followed Hardware Timer conce...
by Ritesh
Thu Jun 29, 2017 1:17 pm
Forum: ESP-IDF
Topic: Getting Guru Meditation Exception while using Hardware Timer
Replies: 8
Views: 9438

Getting Guru Meditation Exception while using Hardware Timer

Hi All, As we are developing one application on ESP32 and we have used ESP32 2.0 Official Release for SDK base, We are getting Guru Meditation Exception randomly in application while using Hardware Timer. We have used Hardware Timer based on example provided with some our modifications. Please find ...
by Ritesh
Wed Jun 21, 2017 5:49 pm
Forum: ESP-IDF
Topic: Interrupt Watchdog Timeout issue
Replies: 4
Views: 10750

Interrupt Watchdog Timeout issue

Hi, I have been working into ESP32 SDK and application since last 6 month and we have found Interrupt Watchdog Timeout issue after storing downloaded firmware into SPI Flash and it has been running into one Task. So, After that I have checked some ESP32 configurations and found one Watchdog Interrup...
by Ritesh
Wed Jun 21, 2017 2:40 am
Forum: ESP-IDF
Topic: Need API support to provide micro seconds delay
Replies: 12
Views: 21580

Re: Need API support to provide micro seconds delay

Isn't it easier to use the RMT peripheral then? That peripheral is designed to send user-shaped pulse trains with high precision. Hi, I need to check that RMT interface. Here, we have only one wire GPIO pin to update firmware into connected module. Please share example of RMT based interface as per...