Add XIAO Wio-SX1262 overlay; support SX12xx bandwidths (including 62.5 kHz) as default
- boards/seeed/xiao_wio_sx1262: add overlay, .conf, board.yml - app: support full set of SX12xx bandwidths; default BW set to 62 (62.5 kHz) - Update Kconfig and prj.conf - Update lora_modem.h/c for validation and mapping
This commit is contained in:
59
build/zephyr/runners.yaml
Normal file
59
build/zephyr/runners.yaml
Normal file
@@ -0,0 +1,59 @@
|
||||
# Available runners configured by board.cmake.
|
||||
runners:
|
||||
- openocd
|
||||
- esp32
|
||||
|
||||
# Default flash runner if --runner is not given.
|
||||
flash-runner: esp32
|
||||
|
||||
# Default debug runner if --runner is not given.
|
||||
debug-runner: openocd
|
||||
|
||||
# Common runner configuration values.
|
||||
config:
|
||||
board_dir: /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3
|
||||
# Build outputs:
|
||||
elf_file: zephyr.elf
|
||||
bin_file: zephyr.bin
|
||||
# Host tools:
|
||||
gdb: /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gdb-py
|
||||
openocd: /Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/openocd
|
||||
openocd_search:
|
||||
- /Users/wijnand/zephyr-sdk-1.0.0/hosttools/opt/openocd/share/openocd/scripts
|
||||
|
||||
# Runner specific arguments
|
||||
args:
|
||||
openocd:
|
||||
- --cmd-load
|
||||
- flash write_image erase
|
||||
- --cmd-verify
|
||||
- verify_image
|
||||
- --no-halt
|
||||
- --no-targets
|
||||
- --no-load
|
||||
- --target-handle
|
||||
- _TARGETNAME_0
|
||||
- --gdb-init
|
||||
- set remote hardware-watchpoint-limit 2
|
||||
- --gdb-init
|
||||
- maintenance flush register-cache
|
||||
- --gdb-init
|
||||
- mon esp appimage_offset 0x0
|
||||
- --gdb-init
|
||||
- mon reset halt
|
||||
- --gdb-init
|
||||
- thb main
|
||||
- --file-type=bin
|
||||
- --flash-address=0x0
|
||||
- --cmd-load
|
||||
- program_esp
|
||||
- --cmd-verify
|
||||
- esp verify_bank_hash 0
|
||||
esp32:
|
||||
- --esp-monitor-baud=
|
||||
- --esp-idf-path=/Users/wijnand/zephyrproject/modules/hal/espressif
|
||||
- --esp-app-address=0x0
|
||||
- --esp-flash-size=8MB
|
||||
- --esp-flash-freq=80m
|
||||
- --esp-flash-mode=dio
|
||||
- --esp-idf-path=/Users/wijnand/zephyrproject/modules/hal/espressif
|
||||
Reference in New Issue
Block a user