addded netlink and iw based wifi scanner for linux

This commit is contained in:
2017-10-10 17:00:12 +02:00
parent 7eb3a16e48
commit 628be72e1f
7 changed files with 601 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
#ifndef INDOOR_WIFI_SCAN_H
#define INDOOR_WIFI_SCAN_H
#include "../WiFiMeasurements.h"
class WiFiScan {
public:
/** scan for nearby access points */
virtual WiFiMeasurements scan() = 0;
};
#endif //INDOOR_WIFI_SCAN_H