Skip to content

Commit

Permalink
Don't filter out duplicate TotTags from BLE scan results
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgecrw committed Dec 12, 2023
1 parent 11f0da3 commit 294e030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/firmware/src/peripherals/src/bluetooth.c
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ void bluetooth_start_scanning(void)
{
print("TotTag BLE: Starting scanning...\n");
DmScanSetInterval(HCI_SCAN_PHY_LE_1M_BIT, (uint16_t*)&ble_master_cfg.scanInterval, (uint16_t*)&ble_master_cfg.scanWindow);
DmScanStart(HCI_SCAN_PHY_LE_1M_BIT, ble_master_cfg.discMode, &ble_master_cfg.scanType, TRUE, ble_master_cfg.scanDuration, 0);
DmScanStart(HCI_SCAN_PHY_LE_1M_BIT, ble_master_cfg.discMode, &ble_master_cfg.scanType, FALSE, ble_master_cfg.scanDuration, 0);
}
}

Expand Down

0 comments on commit 294e030

Please sign in to comment.