Home
last modified time | relevance | path

Searched refs:run_target (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/tools/idf_py_actions/
Ddfu_ext.py2 from idf_py_actions.tools import ensure_build_directory, is_target_supported, run_target
11 run_target(target_name, args, {'ESP_DFU_PART_SIZE': part_size} if part_size else {})
15 run_target(target_name, args)
21 run_target(target_name, args, {'ESP_DFU_PATH': path})
Duf2_ext.py1 from idf_py_actions.tools import ensure_build_directory, run_target
7 run_target(target_name, args)
Dcore_ext.py17 realpath, run_target)
29 run_target(target_name, args)
43 run_target('all', args, custom_error_handler=tool_error_handler)
44 run_target(target_name, args)
75 run_target(target_name, args)
Dserial_ext.py12 from idf_py_actions.tools import ensure_build_directory, get_sdkconfig_value, run_target, run_tool
156 run_target(action, args, {'ESPBAUD': str(args.baud), 'ESPPORT': esp_port})
Dtools.py106 def run_target(target_name, args, env=dict(), custom_error_handler=None): function