| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
- # SPDX-License-Identifier: Apache-2.0
- import collections
- import multiprocessing
- import os
- import platform
- from typing import Dict, Union
- GENERATORS: Dict[str, Union[str, Dict, list]] = collections.OrderedDict([
- # - command: build command line
- # - version: version command line
- # - dry_run: command to run in dry run mode
- # - verbose_flag: verbose flag
- # - force_progression: one liner status of the progress
- ('Ninja', {
- 'command': ['ninja'],
- 'version': ['ninja', '--version'],
- 'dry_run': ['ninja', '-n'],
- 'verbose_flag': '-v',
- # as opposed to printing the status updates each in a in new line
- 'force_progression': True,
- }),
- ])
- if os.name != 'nt':
- MAKE_CMD = 'gmake' if platform.system() == 'FreeBSD' else 'make'
- GENERATORS['Unix Makefiles'] = {'command': [MAKE_CMD, '-j', str(multiprocessing.cpu_count() + 2)],
- 'version': [MAKE_CMD, '--version'],
- 'dry_run': [MAKE_CMD, '-n'],
- 'verbose_flag': 'VERBOSE=1',
- 'force_progression': False}
- URL_TO_DOC = 'https://docs.espressif.com/projects/esp-idf'
- SUPPORTED_TARGETS = ['esp32', 'esp32s2', 'esp32c3', 'esp32s3', 'esp32c2', 'esp32c6', 'esp32h2']
- PREVIEW_TARGETS = ['linux', 'esp32p4']
- OPENOCD_TAGET_CONFIG_DEFAULT = '-f interface/ftdi/esp32_devkitj_v1.cfg -f target/{target}.cfg'
- OPENOCD_TAGET_CONFIG: Dict[str, str] = {
- 'esp32': '-f board/esp32-wrover-kit-3.3v.cfg',
- 'esp32s2': '-f board/esp32s2-kaluga-1.cfg',
- 'esp32c3': '-f board/esp32c3-builtin.cfg',
- 'esp32s3': '-f board/esp32s3-builtin.cfg',
- 'esp32c6': '-f board/esp32c6-builtin.cfg',
- 'esp32h2': '-f board/esp32h2-builtin.cfg',
- }
|