2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _BLESCAN_H
|
|
|
|
#define _BLESCAN_H
|
2018-07-15 14:28:05 +02:00
|
|
|
|
2019-01-20 15:53:31 +01:00
|
|
|
#include "globals.h"
|
2018-07-17 11:53:43 +02:00
|
|
|
#include "macsniff.h"
|
|
|
|
|
2019-01-20 15:53:31 +01:00
|
|
|
// Bluetooth specific includes
|
|
|
|
#include <esp_bt.h>
|
|
|
|
#include <esp_bt_main.h>
|
|
|
|
#include <esp_gap_ble_api.h>
|
|
|
|
#include <esp_blufi_api.h> // needed for BLE_ADDR types, do not remove
|
|
|
|
#include <esp_coexist.h>
|
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
void start_BLEscan(void);
|
|
|
|
void stop_BLEscan(void);
|
|
|
|
|
|
|
|
#endif
|