Skip to content
Snippets Groups Projects
Commit 1e9e07a9 authored by schneider's avatar schneider
Browse files

fix(ble): Dont report missed scan events

parent 8c7cd9ad
No related branches found
No related tags found
1 merge request!392Show COVID-19 exposure notification statistics
......@@ -593,7 +593,10 @@ static void trigger_event(enum ble_event_type event)
{
bool enabled;
epic_interrupt_is_enabled(EPIC_INT_BLE, &enabled);
if(ble_event && enabled) {
/* Print a warning if the app is missing events. Missing scan results
* is considered OK though, as they are queued and periodic. */
if(ble_event && enabled && ble_event != BLE_EVENT_SCAN_REPORT) {
LOG_WARN("ble", "Application missed event %u", ble_event);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment