oh dear... Another 6 hours wasted...
Has someone submitted an issue for this?
Search found 16 matches
- Tue Feb 01, 2022 2:44 am
- Forum: ESP-IDF
- Topic: undefined reference to esp_blufi_gap_event_handler
- Replies: 13
- Views: 18848
- Wed Apr 21, 2021 9:20 pm
- Forum: ESP32 Arduino
- Topic: Bluetooth Classic Scanner
- Replies: 9
- Views: 18054
Re: Bluetooth Classic Scanner
Me too!!!
- Thu Dec 31, 2020 1:08 am
- Forum: ESP32 Arduino
- Topic: BLE and BluetoothSerial not working together
- Replies: 0
- Views: 2062
BLE and BluetoothSerial not working together
Hi all, I am hoping this is an easy one. I am hoping to use BLE (for blufi, which I have got working nicely) to work at the same time as Bluetooth classic SPP. The goal is to be able to (re)configure wifi at any time while connected to an ELM327 over a bluetooth (to serial) connection. Unfortunately...
- Sun Nov 08, 2020 9:07 pm
- Forum: ESP-IDF
- Topic: esp_https_ota is complaining about "invalid size"
- Replies: 4
- Views: 4993
Re: esp_https_ota is complaining about "invalid size"
Thank chegewara, I saw your issue. I had looked over the issues before but never clicked on yours for whatever reason. The solution was to call esp_log_level_set("*", ESP_LOG_ERROR); Additionally, I had to disableCore0WDT(); because of how my code is set up. I think I'll move things around in order ...
- Sun Nov 08, 2020 12:56 pm
- Forum: ESP-IDF
- Topic: esp_https_ota is complaining about "invalid size"
- Replies: 4
- Views: 4993
Re: esp_https_ota is complaining about "invalid size"
Thanks! That seems to have helped. Now it hangs on writing for a few seconds then spits out: I (33763) esp_https_ota: Starting OTA... I (33763) esp_https_ota: Writing to partition subtype 17 at offset 0x200000 Guru Meditation Error: Core 0 panic'ed (Cache disabled but cached memory region accessed) ...
- Sun Nov 08, 2020 4:56 am
- Forum: ESP-IDF
- Topic: esp_https_ota is complaining about "invalid size"
- Replies: 4
- Views: 4993
esp_https_ota is complaining about "invalid size"
Hi all, I am trying to use esp_https_ota to update my app from an HTTPS server. I verified that my server implementation returns exactly the same response as the python "simpleHTTPServer" that is used in the official examples. I also verified that my TLS information is correct, and the connection su...
- Sun Oct 25, 2020 3:48 am
- Forum: ESP-IDF
- Topic: esp_crc16_be not available in 4.0, what can I use instead?
- Replies: 1
- Views: 2831
esp_crc16_be not available in 4.0, what can I use instead?
I am using platformio with IDF v4.0, and the appropriate arduino libraries as a component. I am hacking and slashing away at the Blufi demo, and have finally gotten my phone to communicate with the esp. I did, however have to do this: uint16_t blufi_crc_checksum(uint8_t iv8, uint8_t *data, int len) ...
- Tue Aug 18, 2020 2:51 am
- Forum: ESP-IDF
- Topic: Partition for large app with OTA support
- Replies: 1
- Views: 5491
Partition for large app with OTA support
Hi all, I've been reading through the docs on partitions and I have a few question. This is what I currently have: # Name, Type, SubType, Offset, Size, Flags nvs, data, nvs, 0x9000, 0x4000, otadata, data, ota, 0xd000, 0x2000, phy_init, data, phy, 0xf000, 0x1000, factory, app, factory, 0x10000, 0x16E...
- Wed Aug 12, 2020 5:52 am
- Forum: ESP-IDF
- Topic: Interrupts not firing at right time after switch from arduino framework to idf with arduino as component
- Replies: 0
- Views: 2038
Interrupts not firing at right time after switch from arduino framework to idf with arduino as component
Recently I decided it was time to switch from using only the arduino framework to using IDF with arduino as a component. In my code I have an interrupt that performs 3 distinct action, one after the other, at very precise times: void IRAM_ATTR ControlPilot::Pulse(void* arg){ TIMERG0.int_clr_timers.t...
- Fri Aug 07, 2020 10:00 pm
- Forum: ESP-IDF
- Topic: 100microsecond timer in esp32
- Replies: 10
- Views: 26037
Re: 100microsecond timer in esp32
static void timer_isr(void* arg) { TIMERG0.int_clr_timers.t0 = 1; TIMERG0.hw_timer[0].config.alarm_en = 1; // your code, runs in the interrupt } Just wondering why you re-enable the alarm. IIRC When you set TIMERG0.hw_timer[0].config.autoreload it should remain enabled even after the alarm is trigg...