mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2025-08-07 13:52:54 -04:00
Add include guards and extern declarations
This commit is contained in:
parent
2a4d6c7a7f
commit
558ffd3a6f
3 changed files with 26 additions and 7 deletions
11
Bluetooth.cpp
Normal file
11
Bluetooth.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include "Bluetooth.h"
|
||||
|
||||
#if MCU_VARIANT == MCU_NRF52
|
||||
bool SerialBT_init = false;
|
||||
#endif
|
||||
|
||||
uint32_t bt_pairing_started = 0;
|
||||
uint8_t dev_bt_mac[BT_DEV_ADDR_LEN];
|
||||
char bt_da[BT_DEV_ADDR_LEN];
|
||||
char bt_dh[BT_DEV_HASH_LEN];
|
||||
char bt_devname[11];
|
Loading…
Add table
Add a link
Reference in a new issue