Searched +full:west +full:- +full:commands (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.6.0/west/ |
D | west-commands.yml | 1 west-commands: 2 - file: west/tools.py 3 commands: 4 - name: espressif 6 help: Espressif tools for west framework.
|
D | tools.py | 3 # SPDX-License-Identifier: Apache-2.0 7 Espressif west extension for serial port monitor logging.''' 17 from west.commands import WestCommand 18 from west.configuration import config 19 from west import log 21 # This relies on this file being in hal_espressif/west/tools.py 32 ESP_IDF_REMOTE = "https://github.com/zephyrproject-rtos/hal_espressif" 54 log.die("No serial ports found. Connect a device, or use '-p PORT' " 69 guess = config.get('build', 'guess-dir', fallback='never') 104 log.wrn("no pre-configured runners in {}; " [all …]
|
/hal_espressif-3.6.0/tools/idf_monitor_base/ |
D | output_helpers.py | 1 # Copyright 2015-2021 Espressif Systems (Shanghai) CO LTD 7 # http://www.apache.org/licenses/LICENSE-2.0 20 from west.commands import WestCommand 21 from west.configuration import config 22 from west import log 47 guess = config.get('build', 'guess-dir', fallback='never') 65 def color_print(message, color, newline='\n'): # type: (str, str, Optional[str]) -> None 70 def normal_print(message): # type: (str) -> None 74 def yellow_print(message, newline='\n'): # type: (str, Optional[str]) -> None 78 def red_print(message, newline='\n'): # type: (str, Optional[str]) -> None [all …]
|