Merge pull request #2432 from recrof/kiss-radio-everywhere

kiss radio: added stm32 support + envs in platformio.ini
This commit is contained in:
Liam Cottle
2026-05-01 00:36:46 +12:00
committed by GitHub
69 changed files with 586 additions and 220 deletions
+4 -1
View File
@@ -10,7 +10,10 @@
#include <LittleFS.h>
#elif defined(ESP32)
#include <SPIFFS.h>
#else
#include <InternalFileSystem.h>
#endif
#if defined(KISS_UART_RX) && defined(KISS_UART_TX)
#include <HardwareSerial.h>
#endif
@@ -29,7 +32,7 @@ void halt() {
}
void loadOrCreateIdentity() {
#if defined(NRF52_PLATFORM)
#if defined(NRF52_PLATFORM) || defined(STM32_PLATFORM)
InternalFS.begin();
IdentityStore store(InternalFS, "");
#elif defined(ESP32)