Search found 3 matches

by FredoTorpedo
Tue Dec 05, 2023 4:54 pm
Forum: ESP-IDF
Topic: Channel Information of GAP Scan Events
Replies: 2
Views: 2446

Re: Channel Information of GAP Scan Events

I solved it with this: Tested it with an advertising ESP and a receiving ESP. Couldn't receive when the channel setting did not match. typedef enum { SCAN_ALL_CHANNEL = 0, ONLY_SCAN_CHANNEL_37, ONLY_SCAN_CHANNEL_38, ONLY_SCAN_CHANNEL_39, } scan_mode_config_t; extern scan_mode_config_t scan_channel_s...
by FredoTorpedo
Fri Mar 26, 2021 8:19 am
Forum: ESP-IDF
Topic: Scan_Window and Scan_Interval related GAP_Events
Replies: 0
Views: 1056

Scan_Window and Scan_Interval related GAP_Events

Hello,

is there a way to receive Scan_Window and Scan_Interval related BLE-GAP events.
Or maybe a low level workaround which I can use to detect the start and end of the Scan Window within one Interval?

Thanks for your help.

Cheers,
Fred.
by FredoTorpedo
Fri Oct 09, 2020 2:23 pm
Forum: ESP-IDF
Topic: Channel Information of GAP Scan Events
Replies: 2
Views: 2446

Channel Information of GAP Scan Events

Hello there, I'm new to the ESP32 and microcotroller community and this is my first post. I'm using the Observer Example of Espressif to gather Beacon data with the ESP32 WROOM. I'm using the ESP-IDF with VSCode. The BT Stack I'm using is BLUEDROID. And it works pretty well though. Today I was tryin...