mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
12 lines
147 B
C++
12 lines
147 B
C++
|
|
#include <Arduino.h>
|
||
|
|
#include "target.h"
|
||
|
|
|
||
|
|
ESP32Board board;
|
||
|
|
|
||
|
|
ESPNOWRadio radio;
|
||
|
|
|
||
|
|
bool radio_init() {
|
||
|
|
radio.begin();
|
||
|
|
return true; // success
|
||
|
|
}
|