Searched refs:RunnerCaps (Results 1 – 25 of 37) sorted by relevance
12
/Zephyr-latest/scripts/west_commands/runners/ |
D | qemu.py | 7 from runners.core import RunnerCaps, ZephyrBinaryRunner 20 return RunnerCaps(commands=set())
|
D | xtensa.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner 21 return RunnerCaps(commands={'debug'})
|
D | ecpprog.py | 8 from runners.core import BuildConfiguration, RunnerCaps, ZephyrBinaryRunner 24 return RunnerCaps(commands={"flash"})
|
D | hifive1.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner 25 return RunnerCaps(commands={'flash'})
|
D | misc.py | 15 from runners.core import RunnerCaps, ZephyrBinaryRunner 36 return RunnerCaps(commands={'flash'})
|
D | minichlink.py | 9 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner 37 def capabilities(cls) -> RunnerCaps: 38 return RunnerCaps(commands={"flash"}, flash_addr=True, erase=True, reset=True)
|
D | renode.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner 27 return RunnerCaps(commands={'simulate'}, hide_load_files=True)
|
D | renode-robot.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner 27 return RunnerCaps(commands={'robot'}, hide_load_files=True)
|
D | dediprog.py | 11 from runners.core import RunnerCaps, ZephyrBinaryRunner 31 return RunnerCaps(commands={'flash'})
|
D | gd32isp.py | 6 from runners.core import RunnerCaps, ZephyrBinaryRunner 34 return RunnerCaps(commands={'flash'})
|
D | native.py | 9 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner 40 return RunnerCaps(commands={'debug', 'debugserver', 'flash'})
|
D | probe_rs.py | 6 from runners.core import RunnerCaps, ZephyrBinaryRunner 38 return RunnerCaps(commands={'flash'},
|
D | xsdb.py | 11 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner 34 return RunnerCaps(flash_addr=True)
|
D | trace32.py | 13 from runners.core import BuildConfiguration, RunnerCaps, RunnerConfig, ZephyrBinaryRunner 48 def capabilities(cls) -> RunnerCaps: 49 return RunnerCaps(commands={'flash', 'debug'})
|
D | nsim.py | 10 from runners.core import RunnerCaps, ZephyrBinaryRunner 45 return RunnerCaps(commands={'flash', 'debug', 'debugserver', 'attach'})
|
D | mdb.py | 12 from runners.core import RunnerCaps, ZephyrBinaryRunner 132 return RunnerCaps(commands={'flash', 'debug'}) 177 return RunnerCaps(commands={'flash', 'debug'})
|
D | nios2.py | 7 from runners.core import NetworkPortHelper, RunnerCaps, ZephyrBinaryRunner 34 return RunnerCaps(commands={'flash', 'debug', 'debugserver', 'attach'})
|
D | uf2.py | 10 from runners.core import RunnerCaps, ZephyrBinaryRunner 34 return RunnerCaps(commands={'flash'})
|
D | ezflashcli.py | 8 from runners.core import RunnerCaps, ZephyrBinaryRunner 35 return RunnerCaps(commands={'flash'}, dev_id=True, tool_opt=True, erase=True, reset=True)
|
D | intel_adsp.py | 17 from runners.core import RunnerCaps, ZephyrBinaryRunner 53 return RunnerCaps(commands={'flash'}, tool_opt=True)
|
D | spi_burn.py | 10 from runners.core import BuildConfiguration, RunnerCaps, ZephyrBinaryRunner 33 return RunnerCaps(commands={'flash', 'debug'}, erase=True, flash_addr=True)
|
D | dfu.py | 11 from runners.core import BuildConfiguration, RunnerCaps, ZephyrBinaryRunner 45 return RunnerCaps(commands={'flash'}, dev_id=True, flash_addr=True)
|
D | silabs_commander.py | 15 from runners.core import FileType, RunnerCaps, ZephyrBinaryRunner 45 return RunnerCaps(commands={'flash'},
|
D | stm32flash.py | 10 from runners.core import RunnerCaps, ZephyrBinaryRunner 40 return RunnerCaps(commands={'flash'}, reset=True)
|
D | esp32.py | 12 from runners.core import RunnerCaps, ZephyrBinaryRunner 47 return RunnerCaps(commands={'flash'}, erase=True, reset=True)
|
12