trunk fmt

This commit is contained in:
Thomas Göttgens 2025-08-19 17:44:25 +02:00 committed by Tom Fifield
parent 729d6c576f
commit a7435b85a1
2 changed files with 5 additions and 5 deletions

View File

@ -292,10 +292,10 @@ static int ble_gap_event(struct ble_gap_event *event, void *arg)
// Adverts matching certain patterns are useless for positioning purposes
// (ephemeral MAC etc), so try excluding them if possible
//
// TODO: Expand the list of reject patterns for BLE adverts.
// There are likely more than 10 patterns to test and reject, including most Apple devices and others.
//
// TODO: Implement full packet search for reject patterns (use memmem() or similar),
// TODO: Expand the list of reject patterns for BLE adverts.
// There are likely more than 10 patterns to test and reject, including most Apple devices and others.
//
// TODO: Implement full packet search for reject patterns (use memmem() or similar),
// not just at the beginning (currently uses memcmp()).
const uint8_t rejPat[] = {0x1e, 0xff, 0x06, 0x00, 0x01}; // one of many

View File

@ -71,7 +71,7 @@ class ZPSModule : public SinglePortModule, private concurrency::OSThread
inline void outBufAdd(uint64_t netBytes)
{
// If this is the first record, initialize the header with the current time and reset the record count.
// If this is the first record, initialize the header with the current time and reset the record count.
if (!netRecs) {
netData[0] = getTime();
netData[1] = 0;