target.cpp 208 B

1234567891011
  1. #include <Arduino.h>
  2. #include "target.h"
  3. ESP32Board board;
  4. ESPNOWRadio radio;
  5. bool radio_init() {
  6. // NOTE: radio.begin() is called by Dispatcher::begin(), so not needed here
  7. return true; // success
  8. }