D | minichlink.py | 3 # SPDX-License-Identifier: Apache-2.0 5 """WCH CH32V00x specific runner.""" 37 def capabilities(cls) -> RunnerCaps: 38 return RunnerCaps(commands={"flash"}, flash_addr=True, erase=True, reset=True) 43 "--minichlink", default="minichlink", help="path to the minichlink binary" 46 "--terminal", 49 help="open the terminal after flashing. Implies --reset.", 67 if command == "flash": 68 self.flash() 72 def flash(self): member in MiniChLinkBinaryRunner [all …]
|