Search found 11 matches
- Thu Feb 27, 2020 8:54 am
- Forum: ESP-IDF
- Topic: HTTP Server / LWIP / Netconn Errors
- Replies: 0
- Views: 3204
HTTP Server / LWIP / Netconn Errors
I have an ESP32 running as WiFi AP and running an HTTP server using the IDF HTTP Server Component. I keep getting request failures with the warning messages: httpd_txrx: httpd_sock_err: error in send : 104 httpd_txrx: httpd_sock_err: error in recv : 104 these don't happen on every request, and I thi...
- Tue Feb 25, 2020 8:59 pm
- Forum: ESP IoT Solution
- Topic: BLE working mode
- Replies: 3
- Views: 11235
Re: BLE working mode
To form a connection, your client must be scanning while your server is advertising. Advertisements are sent at intervals, so you could have for example: A client scanning constantly, with constant radio activity, meaning constant power use. A server advertising at set intervals, with radio active o...
- Tue Feb 25, 2020 8:42 pm
- Forum: ESP IoT Solution
- Topic: ESP. BLE implementation with ESP-WROOM-32
- Replies: 1
- Views: 8776
Re: ESP. BLE implementation with ESP-WROOM-32
The DevKitC does include a WROOM32:
https://docs.espressif.com/projects/esp ... oards.html
https://docs.espressif.com/projects/esp ... oards.html
- Tue Feb 25, 2020 8:36 pm
- Forum: ESP-IDF
- Topic: Using esp-idf command prompt for building projects in folders other than esp-idf folder
- Replies: 1
- Views: 3781
Re: Using esp-idf command prompt for building projects in folders other than esp-idf folder
The ESP-IDF Command Prompt should set up your paths so that you can compile projects anywhere, what happens when you try to compile something in a different directory?
- Tue Feb 25, 2020 10:14 am
- Forum: General Discussion
- Topic: what's the bluetooth event task's priority
- Replies: 4
- Views: 10125
Re: what's the bluetooth event task's priority
Probably too late to help you, but for anyone else finding this thread:
Calling uxTaskPriorityGet() from a BLE event handler returns 19, which would make sense with what f.h-f.s. said about going over 18 for other tasks
Calling uxTaskPriorityGet() from a BLE event handler returns 19, which would make sense with what f.h-f.s. said about going over 18 for other tasks
- Fri Feb 21, 2020 10:05 am
- Forum: ESP-IDF
- Topic: ESP_GATTC_SEARCH_CMPL_EVT vs ESP_GATTC_DIS_SRVC_CMPL_EVT
- Replies: 0
- Views: 2618
ESP_GATTC_SEARCH_CMPL_EVT vs ESP_GATTC_DIS_SRVC_CMPL_EVT
Could somebody explain the difference between ESP_GATTC_DIS_SRVC_CMPL_EVT and ESP_GATTC_SEARCH_CMPL_EVT. According to https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/bluetooth/esp_gattc.html: ESP_GATTC_SEARCH_CMPL_EVT = 6 When GATT service discovery is completed, the event comes ...
- Mon Dec 02, 2019 2:51 pm
- Forum: ESP-IDF
- Topic: Disabling & Re-enabling BLE
- Replies: 3
- Views: 8304
Re: Disabling & Re-enabling BLE
Thanks for your reply... didn't really have anything in common as far as I could tell. I've got the functionality I need working now more or less, but I pretty much have to restart from scratch. It seems some things persist (GATT & GAP callbacks only need registering once at the start) but others do...
- Thu Nov 28, 2019 9:51 am
- Forum: ESP-IDF
- Topic: Disabling & Re-enabling BLE
- Replies: 3
- Views: 8304
Disabling & Re-enabling BLE
I have an application which uses BLE and want to place the ESP into light sleep. I know it's not possible to maintain any BLE activity in light sleep mode, but should it be possible to disable bluetooth and re-enable the same configuration later, without having to re-initialise everything? Calling: ...
- Tue Jun 04, 2019 7:21 am
- Forum: ESP-IDF
- Topic: Dynamically registered gattc app makes esp_ble_gattc_open fail
- Replies: 0
- Views: 2381
Dynamically registered gattc app makes esp_ble_gattc_open fail
I'm trying to make a program I've written support multiple client connections to different servers. I understand that each connection needs a separate app to be registered. My process is this: Perform a scan Application requests a connection to a certain BDA from the scan results BLE code creates a ...
- Mon Jun 25, 2018 11:48 am
- Forum: General Discussion
- Topic: BLE Latency
- Replies: 2
- Views: 5599
Re: BLE Latency
As my original question stated:
I'm looking for factors other than the connection parameters which may affect the latency, as I've already set these parameters to provide minimum latency.Anyone have any idea what I could to minimise this latency (other than setting connection parameters)?