firmware/src/target_specific.h
Ben Meadors 72050530f1
NRF52 bluetooth cleanup and fix (#3328)
* NRF52 bluetooth cleanup. Fixes BLE not returning after serial PhoneAPI connection

* Use new var name in esp32 arch
2024-03-03 13:56:55 -06:00

10 lines
220 B
C

#pragma once
#include <Arduino.h>
// Functions that are unique to particular target types (esp32, bare, nrf52 etc...)
// Enable/disable bluetooth.
void setBluetoothEnable(bool enable);
void getMacAddr(uint8_t *dmac);