mirror of
https://github.com/jjshoots/RemoteIDSpoofer.git
synced 2026-04-29 21:27:27 +00:00
42 lines
505 B
C
42 lines
505 B
C
/* -*- tab-width: 2; mode: c; -*-
|
|
*
|
|
* C++ class for Arduino to function as a wrapper around opendroneid.
|
|
* This file has nRF52 specific code.
|
|
*
|
|
* Copyright (c) 2022, Steve Jack.
|
|
*
|
|
* NOTES
|
|
*
|
|
*/
|
|
|
|
#if defined(ARDUINO_ARCH_NRF52)
|
|
|
|
#pragma GCC diagnostic warning "-Wunused-variable"
|
|
|
|
#include <Arduino.h>
|
|
|
|
#if ID_OD_BT
|
|
|
|
#include <ble.h>
|
|
|
|
/*
|
|
*
|
|
*/
|
|
|
|
#if BLE_OPTION == 1
|
|
|
|
#include <bluefruit.h>
|
|
#include <BLEAdvertising.h>
|
|
|
|
#elif BLE_OPTION == 2
|
|
|
|
#endif
|
|
|
|
/*
|
|
*
|
|
*/
|
|
|
|
#endif // ID_OD_BT
|
|
|
|
#endif // nRF52
|