added room server roles to t114 and t-echo; added repeater and room server roles to WSL3; unified json intendations in /boards

This commit is contained in:
Rastislav Vysoky
2025-03-08 09:15:51 +01:00
parent 115deda8e8
commit b1a5badf98
4 changed files with 181 additions and 120 deletions

View File

@@ -92,6 +92,14 @@
#include <helpers/nrf52/RAK4631Board.h>
#include <helpers/CustomSX1262Wrapper.h>
static RAK4631Board board;
#elif defined(HELTEC_T114)
#include <helpers/nrf52/T114Board.h>
#include <helpers/CustomSX1262Wrapper.h>
static T114Board board;
#elif defined(LILYGO_TECHO)
#include <helpers/nrf52/TechoBoard.h>
#include <helpers/CustomSX1262Wrapper.h>
static TechoBoard board;
#else
#error "need to provide a 'board' object"
#endif