Use new SimRadio in main for Portduino

This commit is contained in:
GUVWAF 2022-10-01 12:03:35 +02:00
parent 2696b04138
commit 68282682de

View File

@ -36,7 +36,7 @@
#include "nimble/NimbleBluetooth.h" #include "nimble/NimbleBluetooth.h"
#endif #endif
#if HAS_WIFI #if HAS_WIFI || defined(ARCH_PORTDUINO)
#include "mesh/wifi/WiFiServerAPI.h" #include "mesh/wifi/WiFiServerAPI.h"
#include "mqtt/MQTT.h" #include "mqtt/MQTT.h"
#endif #endif
@ -45,6 +45,9 @@
#include "RF95Interface.h" #include "RF95Interface.h"
#include "SX1262Interface.h" #include "SX1262Interface.h"
#include "SX1268Interface.h" #include "SX1268Interface.h"
#if !HAS_RADIO
#include "SimRadio.h"
#endif
#if HAS_BUTTON #if HAS_BUTTON
#include "ButtonThread.h" #include "ButtonThread.h"