Search found 8 matches
- Mon Sep 21, 2020 2:54 pm
- Forum: ESP-IDF
- Topic: Firmware stops executing, prints garbage, requires reset
- Replies: 3
- Views: 3492
Re: Firmware stops executing, prints garbage, requires reset
Anyone have any thoughts on this? Or any ideas on how I could debug this issue? I have been able to recreate several times. Help would be greatly appreciated.
- Thu Sep 17, 2020 7:10 pm
- Forum: ESP-IDF
- Topic: Firmware stops executing, prints garbage, requires reset
- Replies: 3
- Views: 3492
Firmware stops executing, prints garbage, requires reset
Environment Development Kit: none Module or chip used: ESP32-WROOM-32D IDF version (run git describe --tags to find it): v4.1-beta2-141-g84b51781c Build System: idf.py Compiler version (run xtensa-esp32-elf-gcc --version to find it): xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0 Operating Sys...
- Thu Jan 16, 2020 9:30 pm
- Forum: ESP-IDF
- Topic: BLE causes NVS read to abort at locks.c
- Replies: 0
- Views: 2658
BLE causes NVS read to abort at locks.c
Hello, see here for related Github issue: https://github.com/espressif/esp-idf/issues/4638 My issue is that when I initialize BLE on my device and try and perform NVS readonly actions my code aborts and reports the following stack: abort() was called at PC 0x40082ea6 on core 0 0x40082ea6: lock_acqui...
- Thu Jan 16, 2020 9:27 pm
- Forum: ESP-IDF
- Topic: Realtime Firebase
- Replies: 5
- Views: 8113
Re: Realtime Firebase
Hello all, I have been able to now get data from my firebase database. Use this function: void fetch(char *url, struct FetchParms *fetchParms) { esp_http_client_config_t clientConfig = { .url = url, .event_handler = clientEventHandler, .user_data = fetchParms}; esp_http_client_handle_t client = esp_...
- Fri Dec 13, 2019 7:51 pm
- Forum: ESP-IDF
- Topic: Google Cloud Functions/Firestore HTTP Request from ESP32
- Replies: 0
- Views: 2267
Google Cloud Functions/Firestore HTTP Request from ESP32
Hello, I am trying to get data from Firestore onto my ESP32. I want to do this either directly, or by calling a google cloud function (likely python) which will interface with firestore and return data back to the ESP32 through an HTTP get. Has anyone done this before? And if so, could they give som...
- Fri Dec 13, 2019 7:03 pm
- Forum: ESP-IDF
- Topic: Realtime Firebase
- Replies: 5
- Views: 8113
Re: Realtime Firebase
Hello,
Also trying to do this and not having any luck finding information. Any progress on your end?
Also trying to do this and not having any luck finding information. Any progress on your end?
- Wed Dec 04, 2019 4:38 pm
- Forum: ESP-IDF
- Topic: esp_ble_gatts_send_indicate causes attr value not to change, no notification sent
- Replies: 1
- Views: 3448
esp_ble_gatts_send_indicate causes attr value not to change, no notification sent
Hello, I am currently trying to change the characteristic value of a service then notify a BLE interrogator (BLE Scanner) when there is a change to the attribute. I am adjusting the ESP_IDF example GATTS Server Service Table example with the following code: while (true){ ets_delay_us(100000); ret = ...
- Wed Dec 04, 2019 1:43 pm
- Forum: ESP-IDF
- Topic: Help with GATT Server Table Demo - Finding gatts_if
- Replies: 0
- Views: 2048
Help with GATT Server Table Demo - Finding gatts_if
Hello all, I have recently started learning BLE for esp32. I am looking through the GATT Server Table Demo and I have slightly modified it such that I can adjust the value characteristic. I have successfully done this and confirmed that the value of the service has changed using a BLE interrogator. ...