Some checks failed
Build and deploy Docs site to GitHub Pages / github-pages (push) Has been cancelled
PR Build Check / build (Heltec_v3_companion_radio_ble) (push) Has been cancelled
PR Build Check / build (Heltec_v3_repeater) (push) Has been cancelled
PR Build Check / build (Heltec_v3_room_server) (push) Has been cancelled
PR Build Check / build (LilyGo_Tlora_C6_repeater_) (push) Has been cancelled
PR Build Check / build (PicoW_repeater) (push) Has been cancelled
PR Build Check / build (RAK_4631_companion_radio_ble) (push) Has been cancelled
PR Build Check / build (RAK_4631_repeater) (push) Has been cancelled
PR Build Check / build (RAK_4631_room_server) (push) Has been cancelled
PR Build Check / build (wio-e5-mini_repeater) (push) Has been cancelled
- MeshCore-based Simple Sensor firmware - Heltec T114 without display - BME280 sensor support (temp/humidity/pressure) - Radio: 868.856018 MHz, SF7, BW62.5 kHz, CR4/7 - 2-byte path hash - PlatformIO project
82 lines
2.1 KiB
INI
82 lines
2.1 KiB
INI
|
|
; ----------- Generic ESP32-C3 ------------
|
|
|
|
[Generic_ESPNOW]
|
|
extends = esp32_base
|
|
board = esp32-c3-devkitm-1
|
|
;board = esp32-s3-devkitm-1
|
|
build_flags =
|
|
${esp32_base.build_flags}
|
|
-I variants/generic_espnow
|
|
; -D ESP32_CPU_FREQ=80
|
|
-D PIN_BOARD_SDA=-1
|
|
-D PIN_BOARD_SCL=-1
|
|
; -D P_LORA_TX_LED=8
|
|
-D PIN_USER_BTN=0
|
|
; -D ARDUINO_USB_MODE=1
|
|
; -D ARDUINO_USB_CDC_ON_BOOT=1
|
|
; -D ESPNOW_DEBUG_LOGGING=1
|
|
; -D MESH_PACKET_LOGGING=1
|
|
; -D MESH_DEBUG=1
|
|
build_src_filter = ${esp32_base.build_src_filter}
|
|
+<helpers/esp32/ESPNOWRadio.cpp>
|
|
+<../variants/generic_espnow>
|
|
|
|
[env:Generic_ESPNOW_terminal_chat]
|
|
extends = Generic_ESPNOW
|
|
build_flags =
|
|
${Generic_ESPNOW.build_flags}
|
|
-D MAX_CONTACTS=350
|
|
-D MAX_GROUP_CHANNELS=1
|
|
build_src_filter = ${Generic_ESPNOW.build_src_filter}
|
|
+<../examples/simple_secure_chat/main.cpp>
|
|
lib_deps =
|
|
${Generic_ESPNOW.lib_deps}
|
|
densaugeo/base64 @ ~1.4.0
|
|
|
|
[env:Generic_ESPNOW_repeatr]
|
|
extends = Generic_ESPNOW
|
|
build_flags =
|
|
${Generic_ESPNOW.build_flags}
|
|
-D ADVERT_NAME='"ESPNOW Repeater"'
|
|
-D ADVERT_LAT=0.0
|
|
-D ADVERT_LON=0.0
|
|
-D ADMIN_PASSWORD='"password"'
|
|
-D MAX_NEIGHBOURS=50
|
|
build_src_filter = ${Generic_ESPNOW.build_src_filter}
|
|
+<../examples/simple_repeater/*.cpp>
|
|
lib_deps =
|
|
${Generic_ESPNOW.lib_deps}
|
|
${esp32_ota.lib_deps}
|
|
densaugeo/base64 @ ~1.4.0
|
|
|
|
[env:Generic_ESPNOW_comp_radio_usb]
|
|
extends = Generic_ESPNOW
|
|
build_flags =
|
|
${Generic_ESPNOW.build_flags}
|
|
-D MAX_CONTACTS=350
|
|
-D MAX_GROUP_CHANNELS=8
|
|
; NOTE: DO NOT ENABLE --> -D MESH_PACKET_LOGGING=1
|
|
; NOTE: DO NOT ENABLE --> -D MESH_DEBUG=1
|
|
; NOTE: DO NOT ENABLE --> -D ESPNOW_DEBUG_LOGGING=1
|
|
build_src_filter = ${Generic_ESPNOW.build_src_filter}
|
|
+<../examples/companion_radio/*.cpp>
|
|
lib_deps =
|
|
${Generic_ESPNOW.lib_deps}
|
|
densaugeo/base64 @ ~1.4.0
|
|
|
|
[env:Generic_ESPNOW_room_svr]
|
|
extends = Generic_ESPNOW
|
|
build_flags =
|
|
${Generic_ESPNOW.build_flags}
|
|
-D ADVERT_NAME='"Generic ESPNow Room"'
|
|
-D ADVERT_LAT=0.0
|
|
-D ADVERT_LON=0.0
|
|
-D ADMIN_PASSWORD='"password"'
|
|
-D ROOM_PASSWORD='"hello"'
|
|
build_src_filter = ${Generic_ESPNOW.build_src_filter}
|
|
+<../examples/simple_room_server/*.cpp>
|
|
lib_deps =
|
|
${Generic_ESPNOW.lib_deps}
|
|
${esp32_ota.lib_deps}
|