Searched refs:RunnerCaps (Results 1 – 25 of 28) sorted by relevance
12
/Zephyr-Core-3.6.0/scripts/west_commands/runners/ |
D | qemu.py | 7 from runners.core import ZephyrBinaryRunner, RunnerCaps 20 return RunnerCaps(commands=set())
|
D | xtensa.py | 9 from runners.core import ZephyrBinaryRunner, RunnerCaps 21 return RunnerCaps(commands={'debug'})
|
D | native_gdb.py | 7 from runners.core import ZephyrBinaryRunner, RunnerCaps, RunnerConfig 18 return RunnerCaps(commands={'debug'})
|
D | hifive1.py | 9 from runners.core import ZephyrBinaryRunner, RunnerCaps 25 return RunnerCaps(commands={'flash'})
|
D | misc.py | 13 from runners.core import ZephyrBinaryRunner, RunnerCaps 34 return RunnerCaps(commands={'flash'})
|
D | dediprog.py | 11 from runners.core import ZephyrBinaryRunner, RunnerCaps 31 return RunnerCaps(commands={'flash'})
|
D | gd32isp.py | 6 from runners.core import ZephyrBinaryRunner, RunnerCaps 34 return RunnerCaps(commands={'flash'})
|
D | trace32.py | 14 from runners.core import BuildConfiguration, RunnerCaps, RunnerConfig, ZephyrBinaryRunner 49 def capabilities(cls) -> RunnerCaps: 50 return RunnerCaps(commands={'flash', 'debug'})
|
D | ezflashcli.py | 6 from runners.core import ZephyrBinaryRunner, RunnerCaps 28 return RunnerCaps(commands={'flash'}, erase=True, reset=True)
|
D | mdb.py | 12 from runners.core import ZephyrBinaryRunner, RunnerCaps 119 return RunnerCaps(commands={'flash', 'debug'}) 164 return RunnerCaps(commands={'flash', 'debug'})
|
D | uf2.py | 10 from runners.core import ZephyrBinaryRunner, RunnerCaps 34 return RunnerCaps(commands={'flash'})
|
D | intel_adsp.py | 14 from runners.core import ZephyrBinaryRunner, RunnerCaps 51 return RunnerCaps(commands={'flash'}, tool_opt=True)
|
D | spi_burn.py | 10 from runners.core import ZephyrBinaryRunner, RunnerCaps, BuildConfiguration 32 return RunnerCaps(commands={'flash', 'debug'}, erase=True, flash_addr=True)
|
D | dfu.py | 11 from runners.core import ZephyrBinaryRunner, RunnerCaps, \ 47 return RunnerCaps(commands={'flash'}, dev_id=True, flash_addr=True)
|
D | silabs_commander.py | 14 from runners.core import ZephyrBinaryRunner, RunnerCaps, FileType 45 return RunnerCaps(commands={'flash'},
|
D | esp32.py | 10 from runners.core import ZephyrBinaryRunner, RunnerCaps 47 return RunnerCaps(commands={'flash'}, erase=True, reset=True)
|
D | stm32cubeprogrammer.py | 17 from runners.core import ZephyrBinaryRunner, RunnerCaps, RunnerConfig 115 return RunnerCaps(commands={"flash"}, erase=True, tool_opt=True)
|
D | stm32flash.py | 10 from runners.core import ZephyrBinaryRunner, RunnerCaps 40 return RunnerCaps(commands={'flash'}, reset=True)
|
D | blackmagicprobe.py | 14 from runners.core import ZephyrBinaryRunner, RunnerCaps 144 return RunnerCaps(commands={'flash', 'debug', 'attach'})
|
D | nxp_s32dbg.py | 19 from runners.core import (BuildConfiguration, RunnerCaps, RunnerConfig, 72 def capabilities(cls) -> RunnerCaps: 73 return RunnerCaps(commands={'debug', 'debugserver', 'attach'},
|
D | bossac.py | 16 from runners.core import ZephyrBinaryRunner, RunnerCaps 41 return RunnerCaps(commands={'flash'})
|
D | pyocd.py | 10 from runners.core import ZephyrBinaryRunner, RunnerCaps, BuildConfiguration 79 return RunnerCaps(commands={'flash', 'debug', 'debugserver', 'attach'},
|
D | linkserver.py | 16 from runners.core import ZephyrBinaryRunner, RunnerCaps 64 return RunnerCaps(commands={'flash', 'debug', 'debugserver', 'attach'},
|
D | core.py | 206 class RunnerCaps: class 451 def capabilities(cls) -> RunnerCaps: 457 return RunnerCaps()
|
D | canopen_program.py | 11 from runners.core import ZephyrBinaryRunner, RunnerCaps 87 return RunnerCaps(commands={'flash'}, dev_id=True, flash_addr=False)
|
12