mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-26 22:33:24 +00:00

Some checks are pending
CI / setup (check) (push) Waiting to run
CI / setup (esp32) (push) Waiting to run
CI / setup (esp32c3) (push) Waiting to run
CI / setup (esp32c6) (push) Waiting to run
CI / setup (esp32s3) (push) Waiting to run
CI / setup (nrf52840) (push) Waiting to run
CI / setup (rp2040) (push) Waiting to run
CI / setup (stm32) (push) Waiting to run
CI / check (push) Blocked by required conditions
CI / build-esp32 (push) Blocked by required conditions
CI / build-esp32-s3 (push) Blocked by required conditions
CI / build-esp32-c3 (push) Blocked by required conditions
CI / build-esp32-c6 (push) Blocked by required conditions
CI / build-nrf52 (push) Blocked by required conditions
CI / build-rpi2040 (push) Blocked by required conditions
CI / build-stm32 (push) Blocked by required conditions
CI / build-debian-src (push) Waiting to run
CI / package-pio-deps-native (push) Waiting to run
CI / test-native (push) Waiting to run
CI / docker-debian-amd64 (push) Waiting to run
CI / docker-alpine-amd64 (push) Waiting to run
CI / docker-debian-arm64 (push) Waiting to run
CI / docker-debian-armv7 (push) Waiting to run
CI / after-checks (push) Blocked by required conditions
CI / gather-artifacts (esp32) (push) Blocked by required conditions
CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
CI / gather-artifacts (rp2040) (push) Blocked by required conditions
CI / gather-artifacts (stm32) (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
CI / release-firmware (esp32) (push) Blocked by required conditions
CI / release-firmware (esp32c3) (push) Blocked by required conditions
CI / release-firmware (esp32c6) (push) Blocked by required conditions
CI / release-firmware (esp32s3) (push) Blocked by required conditions
CI / release-firmware (nrf52840) (push) Blocked by required conditions
CI / release-firmware (rp2040) (push) Blocked by required conditions
CI / release-firmware (stm32) (push) Blocked by required conditions
Flawfinder Scan / Flawfinder (push) Waiting to run
* added xiao nRF52840 + xiao wio sx1262 DIY variant * fix path / make buildy buildy * pcf cruft from personal hw --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
103 lines
3.2 KiB
INI
103 lines
3.2 KiB
INI
; Meshtastic DIY v1 by Nano VHF Schematic based on ESP32-WROOM-32 (38 pins) devkit & EBYTE E22 SX1262/SX1268 module
|
|
[env:meshtastic-diy-v1]
|
|
extends = esp32_base
|
|
board = esp32doit-devkit-v1
|
|
board_check = true
|
|
build_flags =
|
|
${esp32_base.build_flags}
|
|
-D DIY_V1
|
|
-D EBYTE_E22
|
|
-I variants/diy/v1
|
|
|
|
; Meshtastic DIY v1.1 new schematic based on ESP32-WROOM-32 & SX1262/SX1268 modules
|
|
[env:meshtastic-diy-v1_1]
|
|
extends = esp32_base
|
|
board = esp32doit-devkit-v1
|
|
board_level = extra
|
|
build_flags =
|
|
${esp32_base.build_flags}
|
|
-D DIY_V1
|
|
-D EBYTE_E22
|
|
-I variants/diy/v1_1
|
|
|
|
; Port to Disaster Radio's ESP32-v3 Dev Board
|
|
[env:meshtastic-dr-dev]
|
|
extends = esp32_base
|
|
board = esp32doit-devkit-v1
|
|
board_upload.maximum_size = 4194304
|
|
board_upload.maximum_ram_size = 532480
|
|
build_flags =
|
|
${esp32_base.build_flags}
|
|
-D DR_DEV
|
|
-D EBYTE_E22
|
|
-I variants/diy/dr-dev
|
|
|
|
; Hydra - Meshtastic DIY v1 hardware with some specific changes
|
|
[env:hydra]
|
|
extends = esp32_base
|
|
board = esp32doit-devkit-v1
|
|
build_flags =
|
|
${esp32_base.build_flags}
|
|
-D DIY_V1
|
|
-I variants/diy/hydra
|
|
|
|
|
|
; Promicro + E22(0)-xxxMM / RA-01SH modules board variant - DIY - without TCXO
|
|
[env:nrf52_promicro_diy_xtal]
|
|
extends = nrf52840_base
|
|
board = promicro-nrf52840
|
|
board_level = extra
|
|
build_flags = ${nrf52840_base.build_flags}
|
|
-I variants/diy/nrf52_promicro_diy_xtal
|
|
-D NRF52_PROMICRO_DIY
|
|
-L "${platformio.libdeps_dir}/${this.__env__}/bsec2/src/cortex-m4/fpv4-sp-d16-hard"
|
|
build_src_filter = ${nrf52_base.build_src_filter} +<../variants/diy/nrf52_promicro_diy_xtal>
|
|
lib_deps =
|
|
${nrf52840_base.lib_deps}
|
|
debug_tool = jlink
|
|
|
|
|
|
; Promicro + E22(0)-xxxM / HT-RA62 modules board variant - DIY - with TCXO
|
|
[env:nrf52_promicro_diy_tcxo]
|
|
extends = nrf52840_base
|
|
board = promicro-nrf52840
|
|
build_flags = ${nrf52840_base.build_flags}
|
|
-I variants/diy/nrf52_promicro_diy_tcxo
|
|
-D NRF52_PROMICRO_DIY
|
|
-L "${platformio.libdeps_dir}/${this.__env__}/bsec2/src/cortex-m4/fpv4-sp-d16-hard"
|
|
build_src_filter = ${nrf52_base.build_src_filter} +<../variants/diy/nrf52_promicro_diy_tcxo>
|
|
lib_deps =
|
|
${nrf52840_base.lib_deps}
|
|
debug_tool = jlink
|
|
|
|
; Seeed XIAO nRF52840 + XIAO Wio SX1262 DIY
|
|
[env:seeed-xiao-nrf52840-wio-sx1262]
|
|
board = xiao_ble_sense
|
|
extends = nrf52840_base
|
|
board_level = extra
|
|
build_flags = ${nrf52840_base.build_flags} -Ivariants/diy/seeed-xiao-nrf52840-wio-sx1262 -D PRIVATE_HW
|
|
-Isrc/platform/nrf52/softdevice -Isrc/platform/nrf52/softdevice/nrf52
|
|
-L "${platformio.libdeps_dir}/${this.__env__}/bsec2/src/cortex-m4/fpv4-sp-d16-hard"
|
|
board_build.ldscript = src/platform/nrf52/nrf52840_s140_v7.ld
|
|
build_src_filter = ${nrf52_base.build_src_filter} +<../variants/diy/seeed-xiao-nrf52840-wio-sx1262>
|
|
lib_deps =
|
|
${nrf52840_base.lib_deps}
|
|
debug_tool = jlink
|
|
|
|
; NanoVHF T-Energy-S3 + E22(0)-xxxM - DIY
|
|
[env:t-energy-s3_e22]
|
|
extends = esp32s3_base
|
|
board = esp32-s3-devkitc-1
|
|
board_level = extra
|
|
board_upload.flash_size = 16MB ;Specify the FLASH capacity as 16MB
|
|
board_build.arduino.memory_type = qio_opi ;Enable internal PSRAM
|
|
build_unflags =
|
|
${esp32s3_base.build_unflags}
|
|
-D ARDUINO_USB_MODE=1
|
|
build_flags =
|
|
${esp32s3_base.build_flags}
|
|
-D EBYTE_ESP32_S3
|
|
-D BOARD_HAS_PSRAM
|
|
-D ARDUINO_USB_MODE=0
|
|
-D ARDUINO_USB_CDC_ON_BOOT=1
|
|
-I variants/diy/t-energy-s3_e22 |