mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-28 11:05:11 +00:00
12 lines
208 B
C++
12 lines
208 B
C++
#include <Arduino.h>
|
|
#include "target.h"
|
|
|
|
ESP32Board board;
|
|
|
|
ESPNOWRadio radio;
|
|
|
|
bool radio_init() {
|
|
// NOTE: radio.begin() is called by Dispatcher::begin(), so not needed here
|
|
return true; // success
|
|
}
|