mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-24 03:31:14 +00:00
30 lines
502 B
C++
30 lines
502 B
C++
#include "configuration.h"
|
|
#include <pico/unique_id.h>
|
|
#include <stdio.h>
|
|
|
|
void setBluetoothEnable(bool on)
|
|
{
|
|
// not needed
|
|
}
|
|
|
|
void cpuDeepSleep(uint32_t msecs)
|
|
{
|
|
// not needed
|
|
}
|
|
|
|
void updateBatteryLevel(uint8_t level)
|
|
{
|
|
// not needed
|
|
}
|
|
|
|
void getMacAddr(uint8_t *dmac)
|
|
{
|
|
pico_unique_board_id_t src;
|
|
pico_get_unique_board_id(&src);
|
|
dmac[5] = src.id[7];
|
|
dmac[4] = src.id[6];
|
|
dmac[3] = src.id[5];
|
|
dmac[2] = src.id[4];
|
|
dmac[1] = src.id[3];
|
|
dmac[0] = src.id[2];
|
|
} |