Skip to content

Commit

Permalink
comments cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaus K Wilting authored and Klaus K Wilting committed Apr 2, 2018
1 parent 60b1d31 commit 95358eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lorawan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,17 @@ void printKeys(void) {

void do_send(osjob_t* j){
uint16_t data;
// Total of differents MAC seen (BLE+WiFi)
// Total BLE+WIFI unique MACs seen
data = (uint16_t) macs.size();
mydata[0] = (data & 0xff00) >> 8;
mydata[1] = data & 0xff;

// Total of differents MAC seen BLE Only
// Sum of unique BLE MACs seen
data = (uint16_t) bles.size();
mydata[2] = (data & 0xff00) >> 8;
mydata[3] = data & 0xff;

// Total of differents MAC seen Wifi Only
// Sum of unique WIFI MACs seen
// TBD ?
//data = (uint16_t) wifis.size();
//mydata[4] = (data & 0xff00) >> 8;
Expand Down

0 comments on commit 95358eb

Please sign in to comment.