Browse Source
Merge pull request #660 from khudson/station_g2_logger
Station G2: Adds repeater variant with packet logging on
pull/665/head
ripplebiz
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
19 additions and
0 deletions
-
variants/station_g2/platformio.ini
|
|
|
@ -45,6 +45,25 @@ lib_deps = |
|
|
|
${Station_G2.lib_deps} |
|
|
|
${esp32_ota.lib_deps} |
|
|
|
|
|
|
|
[env:Station_G2_logging_repeater] |
|
|
|
extends = Station_G2 |
|
|
|
build_flags = |
|
|
|
${Station_G2.build_flags} |
|
|
|
-D ADVERT_NAME='"Station G2 Logging Repeater"' |
|
|
|
-D ADVERT_LAT=0.0 |
|
|
|
-D ADVERT_LON=0.0 |
|
|
|
-D ADMIN_PASSWORD='"password"' |
|
|
|
-D MAX_NEIGHBOURS=8 |
|
|
|
-D MESH_PACKET_LOGGING=1 |
|
|
|
-D SX126X_RX_BOOSTED_GAIN=1 |
|
|
|
; https://wiki.uniteng.com/en/meshtastic/station-g2#impact-of-lora-node-dense-areashigh-noise-environments-on-rf-performance |
|
|
|
; -D MESH_DEBUG=1 |
|
|
|
build_src_filter = ${Station_G2.build_src_filter} |
|
|
|
+<../examples/simple_repeater> |
|
|
|
lib_deps = |
|
|
|
${Station_G2.lib_deps} |
|
|
|
${esp32_ota.lib_deps} |
|
|
|
|
|
|
|
[env:Station_G2_room_server] |
|
|
|
extends = Station_G2 |
|
|
|
build_src_filter = ${Station_G2.build_src_filter} |
|
|
|
|