37 lines
820 B
YAML
37 lines
820 B
YAML
# Available runners configured by board.cmake.
|
|
runners:
|
|
- pyocd
|
|
- jlink
|
|
- openocd
|
|
|
|
# Default flash runner if --runner is not given.
|
|
flash-runner: pyocd
|
|
|
|
# Default debug runner if --runner is not given.
|
|
debug-runner: pyocd
|
|
|
|
# Common runner configuration values.
|
|
config:
|
|
board_dir: C:/Users/iteedi/zephyrproject/projects/EWS/firmware/canfd_cdc_composite/boards/arm/ews
|
|
# Build outputs:
|
|
elf_file: zephyr.elf
|
|
hex_file: zephyr.hex
|
|
bin_file: zephyr.bin
|
|
# Host tools:
|
|
gdb: C:/Users/iteedi/zephyr-sdk-0.17.4/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb.exe
|
|
|
|
# Runner specific arguments
|
|
args:
|
|
pyocd:
|
|
- --dt-flash=y
|
|
- --target=stm32g0b1kbux
|
|
jlink:
|
|
- --dt-flash=y
|
|
- --device=STM32G0B1KB
|
|
- --speed=4000
|
|
openocd:
|
|
- --cmd-load
|
|
- flash write_image erase
|
|
- --cmd-verify
|
|
- verify_image
|