mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-29 12:31:58 +00:00

Co-authored-by: Peter Lawrence <12226419+majbthrd@users.noreply.github.com> Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
28 lines
446 B
C++
28 lines
446 B
C++
#include <stm32wle5xx.h>
|
|
#include <stm32wlxx_hal.h>
|
|
#include "configuration.h"
|
|
#include "RTC.h"
|
|
|
|
void setBluetoothEnable(bool on) {}
|
|
|
|
void playStartMelody() {}
|
|
|
|
void updateBatteryLevel(uint8_t level) {}
|
|
|
|
void getMacAddr(uint8_t *dmac)
|
|
{
|
|
for (int i = 0; i < 6; i++)
|
|
dmac[i] = i;
|
|
}
|
|
|
|
void cpuDeepSleep(uint64_t msecToWake) {}
|
|
|
|
/* pacify libc_nano */
|
|
extern "C" {
|
|
int _gettimeofday( struct timeval *tv, void *tzvp )
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
|