| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- [Xiao_S3_WIO]
- extends = esp32_base
- board = seeed_xiao_esp32s3
- board_check = true
- board_build.mcu = esp32s3
- build_flags = ${esp32_base.build_flags}
- -I variants/xiao_s3_wio
- -D SEEED_XIAO_S3
- -D P_LORA_DIO_1=39
- -D P_LORA_NSS=41
- -D P_LORA_RESET=42 ; RADIOLIB_NC
- -D P_LORA_BUSY=40 ; DIO2 = 38
- -D P_LORA_SCLK=7
- -D P_LORA_MISO=8
- -D P_LORA_MOSI=9
- -D PIN_USER_BTN=21
- -D PIN_STATUS_LED=48
- -D SX126X_RXEN=38
- -D SX126X_TXEN=RADIOLIB_NC
- -D SX126X_DIO2_AS_RF_SWITCH=true
- -D SX126X_DIO3_TCXO_VOLTAGE=1.8
- -D SX126X_CURRENT_LIMIT=140
- -D RADIO_CLASS=CustomSX1262
- -D WRAPPER_CLASS=CustomSX1262Wrapper
- -D LORA_TX_POWER=22
- -D SX126X_RX_BOOSTED_GAIN=1
- build_src_filter = ${esp32_base.build_src_filter}
- +<../variants/xiao_s3_wio>
- [env:Xiao_S3_WIO_Repeater]
- extends = Xiao_S3_WIO
- build_src_filter = ${Xiao_S3_WIO.build_src_filter}
- +<../examples/simple_repeater/main.cpp>
- build_flags =
- ${Xiao_S3_WIO.build_flags}
- -D ADVERT_NAME='"XiaoS3 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 MESH_DEBUG=1
- lib_deps =
- ${Xiao_S3_WIO.lib_deps}
- ${esp32_ota.lib_deps}
- [env:Xiao_S3_WIO_room_server]
- extends = Xiao_S3_WIO
- build_src_filter = ${Xiao_S3_WIO.build_src_filter}
- +<../examples/simple_room_server>
- build_flags =
- ${Xiao_S3_WIO.build_flags}
- -D ADVERT_NAME='"XiaoS3 Room"'
- -D ADVERT_LAT=0.0
- -D ADVERT_LON=0.0
- -D ADMIN_PASSWORD='"password"'
- -D ROOM_PASSWORD='"hello"'
- ; -D MESH_PACKET_LOGGING=1
- ; -D MESH_DEBUG=1
- lib_deps =
- ${Xiao_S3_WIO.lib_deps}
- ${esp32_ota.lib_deps}
- [env:Xiao_S3_WIO_terminal_chat]
- extends = Xiao_S3_WIO
- build_flags =
- ${Xiao_S3_WIO.build_flags}
- -D MAX_CONTACTS=100
- -D MAX_GROUP_CHANNELS=8
- ; -D MESH_PACKET_LOGGING=1
- ; -D MESH_DEBUG=1
- build_src_filter = ${Xiao_S3_WIO.build_src_filter}
- +<../examples/simple_secure_chat/main.cpp>
- lib_deps =
- ${Xiao_S3_WIO.lib_deps}
- densaugeo/base64 @ ~1.4.0
- [env:Xiao_S3_WIO_companion_radio_ble]
- extends = Xiao_S3_WIO
- build_flags =
- ${Xiao_S3_WIO.build_flags}
- -D MAX_CONTACTS=100
- -D MAX_GROUP_CHANNELS=8
- -D BLE_PIN_CODE=123456
- -D DISPLAY_CLASS=SSD1306Display
- -D OFFLINE_QUEUE_SIZE=256
- ; -D BLE_DEBUG_LOGGING=1
- ; -D MESH_PACKET_LOGGING=1
- ; -D MESH_DEBUG=1
- build_src_filter = ${Xiao_S3_WIO.build_src_filter}
- +<helpers/ui/SSD1306Display.cpp>
- +<helpers/esp32/*.cpp>
- +<../examples/companion_radio>
- lib_deps =
- ${Xiao_S3_WIO.lib_deps}
- densaugeo/base64 @ ~1.4.0
- adafruit/Adafruit SSD1306 @ ^2.5.13
- [env:Xiao_S3_WIO_companion_radio_serial]
- extends = Xiao_S3_WIO
- build_flags =
- ${Xiao_S3_WIO.build_flags}
- -D MAX_CONTACTS=100
- -D MAX_GROUP_CHANNELS=8
- -D SERIAL_TX=D6
- -D SERIAL_RX=D7
- ; -D MESH_PACKET_LOGGING=1
- ; -D MESH_DEBUG=1
- build_src_filter = ${Xiao_S3_WIO.build_src_filter}
- +<helpers/esp32/*.cpp>
- +<../examples/companion_radio>
- lib_deps =
- ${Xiao_S3_WIO.lib_deps}
- densaugeo/base64 @ ~1.4.0
|