firmware/src/portduino/PortduinoGlue.cpp

20 lines
463 B
C++
Raw Normal View History

2020-09-06 16:24:08 +00:00
#include "CryptoEngine.h"
#include "target_specific.h"
#include <Utility.h>
// FIXME - move getMacAddr/setBluetoothEnable into a HALPlatform class
void getMacAddr(uint8_t *dmac)
{
notImplemented("getMacAddr");
}
void setBluetoothEnable(bool on)
{
notImplemented("setBluetoothEnable");
}
// FIXME - implement real crypto for linux
CryptoEngine *crypto = new CryptoEngine();
void updateBatteryLevel(uint8_t level) NOT_IMPLEMENTED("updateBatteryLevel");