add sendESPNow

This commit is contained in:
Timm Bogner 2023-03-11 00:27:35 -06:00
parent 64f9a050c9
commit 48467d4970

View File

@ -56,6 +56,8 @@ void timeFDRSLoRa(uint8_t *);
static uint16_t crc16_update(uint16_t, uint8_t); static uint16_t crc16_update(uint16_t, uint8_t);
void sendESPNowNbr(uint8_t); void sendESPNowNbr(uint8_t);
void sendESPNowPeers(); void sendESPNowPeers();
void sendESPNow(uint8_t);
void sendMQTT(); void sendMQTT();
void sendLog(); void sendLog();
void resendLog(); void resendLog();
@ -228,6 +230,7 @@ void loopFDRS()
#ifndef USE_ESPNOW #ifndef USE_ESPNOW
void sendESPNowNbr(uint8_t interface) {} void sendESPNowNbr(uint8_t interface) {}
void sendESPNowPeers() {} void sendESPNowPeers() {}
void sendESPNow(uint8_t address) {}
#endif #endif
#ifndef USE_WIFI #ifndef USE_WIFI
void sendMQTT() {} void sendMQTT() {}