You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using my program as a beacon scanner and i need a way to scan faster as currently i'm missing a lof of packets with the default scan interval and window on a Pi Zero. I don't need to connect to any devices and i'm looking for a way to set the program to scan as fast as possible, while gaining access to the Manufactuer Data in the Advertising Packet.
The text was updated successfully, but these errors were encountered:
Hi @hashtagchris. it is possible to set the scan parmaters as defined
In BlueZ there is this struct:
https://github.com/pauloborges/bluez/blob/master/lib/hci.h#L1536
typedef struct {
uint8_t type;
uint16_t interval;
uint16_t window;
uint8_t own_bdaddr_type;
uint8_t filter;
} attribute ((packed)) le_set_scan_parameters_cp;
I'm using my program as a beacon scanner and i need a way to scan faster as currently i'm missing a lof of packets with the default scan interval and window on a Pi Zero. I don't need to connect to any devices and i'm looking for a way to set the program to scan as fast as possible, while gaining access to the Manufactuer Data in the Advertising Packet.
The text was updated successfully, but these errors were encountered: