esp-idf/tools/idf_py_actions
Roland Dobai 6edb9982fd Merge branch 'coredump-info-offset_v5.1' into 'release/v5.1'
Tools: coredump-info - fix non-default partition table offset issues (v5.1)

See merge request espressif/esp-idf!26802
2023-11-16 18:56:55 +08:00
..
hint_modules feat(tools): idf.py: implement hints for component reqs 2023-08-17 07:57:38 +02:00
README.md
__init__.py
constants.py esp32h4: removed esp32h4 related codes 2023-04-26 18:53:12 +08:00
core_ext.py tools: fix custom sdkconfig renaming in set-target 2023-03-08 16:45:55 +01:00
create_ext.py tools: Add python types hints 2022-06-15 14:33:29 +02:00
debug_ext.py Merge branch 'coredump-info-offset_v5.1' into 'release/v5.1' 2023-11-16 18:56:55 +08:00
dfu_ext.py dfu: add esp32s3 to supported DFU targets for idf.py 2022-07-11 15:58:21 +08:00
errors.py tools: Add python types hints 2022-06-15 14:33:29 +02:00
global_options.py idf.py: Change copyright in tools dir 2022-05-24 14:01:50 +02:00
hints.yml tools: Update idf-py hints with Bluedroid HFP AG info 2023-04-19 19:10:00 +08:00
roms.json tools: update esp-rom-elf to version 20230320 2023-03-20 19:20:34 +08:00
roms_schema.json tools: fixed elf symbols load if gdbinit specified 2022-09-21 22:39:03 +04:00
serial_ext.py fix(tools): fix autocomplete for --port option 2023-09-08 09:25:33 +02:00
tools.py feat(tools): idf_monitor: support for loadable hint provider modules 2023-08-17 07:57:38 +02:00
uf2_ext.py tools: Add python types hints 2022-06-15 14:33:29 +02:00

README.md

idf.py extensions

Python modules (subdirectories and files) in this directory named [your_extension]_ext will be loaded as idf.py extensions. If you want to provide extra extensions just provide ; separated list of directories with extensions in IDF_EXTRA_ACTIONS_PATH. Extensions will be loaded in alphanumeric order. Command line arguments parsing and extension mechanism is implemented on top of Click (versions >=5.0 are supported).

They should define a function action_extensions(base_actions, project_path) where:

  • base_actions - dictionary with actions that are already available for idf.py
  • project_path - working dir, may be defaulted to os.getcwd()

This function have to return a dict with 3 possible keys:

{
    # Additional options that will be available from id
    "global_options": [{
        "names": ["--option-name"],
        "help": "Help for option --option-name.",
    }],
    # List of functions that will have access to full app context, and can mangle with arguments
    "global_action_callbacks": [global_callback],
    # Additional subcommands for idf.py
    "actions": {
        "subcommand_name": {
            "callback": subcommand_callback,
            "help": "Help for subcommand.",
        },
    },
}

Where function global_callback(ctx, global_args, tasks) accepts 3 arguments:

  • ctx - Click context
  • global_args - dictionary of all available global arguments
  • tasks - list of Task objects

And subcommand_callback(subcommand_name, ctx, args) accepts 3 arguments:

  • subcommand_name - name of subcommand
  • ctx - Click context
  • args - list of command's arguments