Search found 7 matches
- Thu Mar 15, 2018 11:11 am
- Forum: General Discussion
- Topic: Wifi / Bluetooth Problems with custom Board
- Replies: 6
- Views: 12560
Re: Wifi / Bluetooth Problems with custom Board
Thanks for your replies! Yes, we already checked the frequency on a spectrum analyzer and it looked good. And yes, we have a full ground plane under the crystal. And today, I removed the 40 MHz crystal and soldered a 26 MHz crystal taken from an ESP-01 on the board. Now, even scanning did not work a...
- Tue Mar 13, 2018 5:43 pm
- Forum: General Discussion
- Topic: Wifi / Bluetooth Problems with custom Board
- Replies: 6
- Views: 12560
Re: Wifi / Bluetooth Problems with custom Board
No suggestions?
- Thu Mar 01, 2018 12:08 pm
- Forum: General Discussion
- Topic: Wifi / Bluetooth Problems with custom Board
- Replies: 6
- Views: 12560
Wifi / Bluetooth Problems with custom Board
Hi, we have developed a custom board based on the ESP32 (ESP32D0WDQ5, revision 0) and are facing major problems with Wifi and Bluetooth. We are not able to connect to a station or to create an access point at all. The only thing that is working is scanning for networks. For example, this project (ht...
- Thu Oct 19, 2017 9:23 am
- Forum: ESP-IDF
- Topic: Reduce external interrupt latency
- Replies: 15
- Views: 30383
Re: Reduce external interrupt latency
So, today I had access to the oscilloscope again and this time I added "portYIELD_FROM_ISR" to my ISR handler so that I got the following: static void IRAM_ATTR isr_handler(void* args) { gpio_num_t gpio_num = (gpio_num_t) args; xQueueSendFromISR(intr_queue, &gpio_num, NULL); portYIELD_FROM_ISR(); } ...
- Tue Oct 10, 2017 5:34 am
- Forum: ESP-IDF
- Topic: Reduce external interrupt latency
- Replies: 15
- Views: 30383
Re: Reduce interrupt latency
I tried it a while ago and caused an exception.
- Mon Oct 09, 2017 11:01 am
- Forum: ESP-IDF
- Topic: Reduce external interrupt latency
- Replies: 15
- Views: 30383
Re: Reduce interrupt latency
Hi Angus, it is basically the GPIO example. I did a measurement again, the exact delay is 16 us. #include "esp_log.h" #include "esp_intr_alloc.h" #include "driver/gpio.h" #include "freertos/FreeRTOS.h" #include "freertos/portmacro.h" #include "freertos/queue.h" #include "freertos/task.h" #define GPI...
- Sun Oct 08, 2017 9:55 pm
- Forum: ESP-IDF
- Topic: Reduce external interrupt latency
- Replies: 15
- Views: 30383
Reduce external interrupt latency
Hi, we are doing some stuff with an external RF transceiver and need to respond to its interrupts as fast as (technically) possible. Writing into a queue in order to handle the interrupt in another task takes way too much time (about 13 us). Setting a bit and polling this bit in another task within ...