Browse Source
Merge pull request #858 from csrutil/fix/tiny-relay-compile
Fix: add missing build flags for tiny_relay
pull/859/head
Liam Cottle
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
1 deletions
-
variants/tiny_relay/platformio.ini
|
|
|
@ -19,15 +19,21 @@ build_src_filter = ${stm32_base.build_src_filter} |
|
|
|
extends = Tiny_Relay |
|
|
|
build_flags = ${Tiny_Relay.build_flags} |
|
|
|
-D ADVERT_NAME='"tiny_relay Repeater"' |
|
|
|
-D ADVERT_LAT=0.0 |
|
|
|
-D ADVERT_LON=0.0 |
|
|
|
-D ADMIN_PASSWORD='"password"' |
|
|
|
-D MAX_NEIGHBOURS=50 |
|
|
|
build_src_filter = ${Tiny_Relay.build_src_filter} |
|
|
|
+<../examples/simple_repeater/main.cpp> |
|
|
|
+<../examples/simple_repeater> |
|
|
|
|
|
|
|
[env:Tiny_Relay_sensor] |
|
|
|
extends = Tiny_Relay |
|
|
|
build_flags = ${Tiny_Relay.build_flags} |
|
|
|
-D ADVERT_NAME='"tiny_relay Sensor"' |
|
|
|
-D ADVERT_LAT=0.0 |
|
|
|
-D ADVERT_LON=0.0 |
|
|
|
-D ADMIN_PASSWORD='"password"' |
|
|
|
-D MAX_NEIGHBOURS=50 |
|
|
|
build_src_filter = ${Tiny_Relay.build_src_filter} |
|
|
|
+<../examples/simple_sensor> |
|
|
|
|
|
|
|
|