@ -18,7 +18,6 @@ void app::setup() {
while (!Serial)
yield();
resetSystem();
mSettings.setup();
@ -14,7 +14,9 @@
#include "appInterface.h"
#include "hm/hmSystem.h"
#include "hm/hmRadio.h"
#if defined(ESP32)
#include "hms/hmsRadio.h"
#endif
#include "publisher/pubMqtt.h"
#include "publisher/pubSerial.h"
#include "utils/crc.h"
@ -9,6 +9,7 @@
#include <RF24.h>
#include "SPI.h"
#include "radio.h"
#include "../config/config.h"
#if defined(CONFIG_IDF_TARGET_ESP32S3)
#include "nrfHal.h"
@ -3,7 +3,7 @@
// Creative Commons - http://creativecommons.org/licenses/by-nc-sa/3.0/de/
//-----------------------------------------------------------------------------
#include "spiPatcher.h"
SpiPatcher *SpiPatcher::mInstance = nullptr;
@ -7,6 +7,8 @@
#define __SPI_PATCHER_H__
#pragma once
#include "spiPatcherHandle.h"
#include <driver/spi_master.h>
@ -81,4 +83,6 @@ class SpiPatcher {
StaticSemaphore_t mutex_buffer;
};
#endif /*ESP32*/
#endif /*__SPI_PATCHER_H__*/