removed repeater code not working properly

This commit is contained in:
James Hall 2025-03-20 11:48:35 -04:00
parent ae08ecf8fd
commit 8b4662a40a
2 changed files with 4 additions and 21 deletions

View file

@ -101,10 +101,6 @@
#include <helpers/CustomSX1262Wrapper.h> #include <helpers/CustomSX1262Wrapper.h>
#include <helpers/CustomLLCC68Wrapper.h> #include <helpers/CustomLLCC68Wrapper.h>
static faketecBoard board; static faketecBoard board;
#elif defined(LILYGO_TBEAM)
#include <helpers/TBeamBoard.h>
#include <helpers/CustomSX1276Wrapper.h>
static TBeamBoard board;
#else #else
#error "need to provide a 'board' object" #error "need to provide a 'board' object"
#endif #endif

View file

@ -22,6 +22,7 @@ extends = LilyGo_TBeam
board_build.upload.maximum_ram_size=2000000 board_build.upload.maximum_ram_size=2000000
build_flags = build_flags =
${LilyGo_TBeam.build_flags} ${LilyGo_TBeam.build_flags}
-D DISPLAY_CLASS=SSD1306Display
-D MAX_CONTACTS=100 -D MAX_CONTACTS=100
-D MAX_GROUP_CHANNELS=1 -D MAX_GROUP_CHANNELS=1
-D BLE_PIN_CODE=123456 -D BLE_PIN_CODE=123456
@ -35,22 +36,8 @@ build_flags =
; -D MESH_DEBUG=1 ; -D MESH_DEBUG=1
build_src_filter = ${LilyGo_TBeam.build_src_filter} build_src_filter = ${LilyGo_TBeam.build_src_filter}
+<helpers/esp32/*.cpp> +<helpers/esp32/*.cpp>
+<../examples/companion_radio/main.cpp> +<helpers/ui/*.cpp>
+<../examples/companion_radio>
lib_deps = lib_deps =
${LilyGo_TBeam.lib_deps} ${LilyGo_TBeam.lib_deps}
densaugeo/base64 @ ~1.4.0 densaugeo/base64 @ ~1.4.0
[env:Tbeam_repeater]
extends = LilyGo_TBeam
build_flags =
${LilyGo_TBeam.build_flags}
-D DISPLAY_CLASS=SSD1306Display
-D ADVERT_NAME='"LilyGo TBeam Repeater"'
-D ADVERT_LAT=-37.0
-D ADVERT_LON=145.0
-D ADMIN_PASSWORD='"password"'
-D MESH_PACKET_LOGGING=1
; -D MESH_DEBUG=1
build_src_filter = ${LilyGo_TBeam.build_src_filter}
+<../examples/simple_repeater>