Search found 7 matches

by elfrances
Mon Sep 02, 2024 2:53 pm
Forum: ESP-IDF
Topic: BLE central app doesn't get SCAN_RSP callback events during an active scan
Replies: 1
Views: 962

Re: BLE central app doesn't get SCAN_RSP callback events during an active scan

Never mind folks... I figured out the issue. The reason my app was not getting the SCAN_RSP callbacks was that I had the BT_NIMBLE_ROLE_OBSERVER feature disabled in the sdkconfig. Once I enabled it and rebuilt, the app started getting the SCAN_RSP callbacks. It may be worth adding a comment about th...
by elfrances
Mon Sep 02, 2024 2:05 pm
Forum: ESP-IDF
Topic: BLE central app doesn't get SCAN_RSP callback events during an active scan
Replies: 1
Views: 962

BLE central app doesn't get SCAN_RSP callback events during an active scan

I'm writing a BLE central/client app that performs an active scan to discover devices. The peripheral device I'm interested in sends some of its advertisement data in the ADV_IND message and some in the SCAN_RSP message. My app gets the BLE_GAP_EVENT_DISC callback events for the ADV_IND messages but...
by elfrances
Fri Jul 05, 2024 5:16 pm
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04
Replies: 3
Views: 3451

Re: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04

Thanks much @ESP_kondalkolipaka and apologies for the late reply. Your suggested work-around fixed the crash I was seeing in Espressif-IDE v3.0.0 running on Ubuntu 24.04 If the root cause of the problem is likely to stay around for a while, it may be a good idea to add a note and the suggested worka...
by elfrances
Thu Jun 27, 2024 2:05 pm
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04
Replies: 3
Views: 3451

Re: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04

Attached you can find the hs_err_pid55186.log file with the crash info.

IDE v3.0.0 is using all its default config values. I did not change any settings.

Downgrading to v2.12.1 of the IDE eliminates this crash.
by elfrances
Thu Jun 27, 2024 12:42 am
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04
Replies: 3
Views: 3451

Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04

I've had multiple random crashes running the Espressif-IDE v3.0.0 app on my Ubuntu 24.04 PC. By "random" I mean that the app crashes (abruptly exits) by no apparent reason. In the latest crash I was simply editing a line of code in a .c file! This crash at least seems reproducible :) I was changing ...
by elfrances
Wed Oct 11, 2023 1:46 pm
Forum: ESP-IDF
Topic: Build error when switching target from esp32c3 to esp32s3
Replies: 2
Views: 950

Re: Build error when switching target from esp32c3 to esp32s3

Thanks for your prompt reply. Yes, that was it. I'm still new to the ESP32 and its development framework, and didn't know I had to re-run menuconfig after switching targets. Now I do! :D
by elfrances
Tue Oct 10, 2023 4:23 pm
Forum: ESP-IDF
Topic: Build error when switching target from esp32c3 to esp32s3
Replies: 2
Views: 950

Build error when switching target from esp32c3 to esp32s3

Hi there! I have a project that uses nimBLE building and running OK on the esp32c3 target. As I need extra flash memory, I decided to switch to the esp32s3. But when I try to build the project for the new esp32s3 target, I get this compilation error related to a missing "nimble/ble.h" header file. I...