Searched +full:example_test +full:- +full:esp32c3 (Results 1 – 9 of 9) sorted by relevance
/hal_espressif-3.5.0/.gitlab/ci/ |
D | build.yml | 5 - build 12 - test "$CI_CCACHE_STATS" == 1 && test -n "$(which ccache)" && ccache --show-stats || true 27 - log_template_app/* 28 - size_info.txt 29 - build_template_app/**/size.json 31 # Set the variable for 'esp-idf-template' testing 32 …- ESP_IDF_TEMPLATE_GIT=${ESP_IDF_TEMPLATE_GIT:-"https://github.com/espressif/esp-idf-template.git"} 33 - retry_failed git clone ${ESP_IDF_TEMPLATE_GIT} 34 # Try to use the same branch name for esp-idf-template that we're 35 # using on esp-idf. If it doesn't exist then just stick to the default branch [all …]
|
D | rules.yml | 4 .patterns-c-files: &patterns-c-files 5 - ".gitlab/ci/static-code-analysis.yml" 7 - "tools/ci/static-analysis-rules.yml" 8 - "tools/ci/clang_tidy_dirs.txt" 10 - "**/*.{c,C}" 11 - "**/*.{h,H}" 12 - "components/**/Kconfig" 13 - "components/**/CMakeList.txt" 15 .patterns-python-files: &patterns-python-files 16 - ".gitlab/ci/static-code-analysis.yml" [all …]
|
D | target-test.yml | 13 - "**/*.log" 14 - $LOG_PATH 16 - .git/**/* 21 TEST_FW_PATH: "$CI_PROJECT_DIR/tools/tiny-test-fw" 23 ENV_FILE: "$CI_PROJECT_DIR/ci-test-runner-configs/$CI_RUNNER_DESCRIPTION/EnvConfig.yml" 26 - *define_config_file_name 28 - | 29 …{ [[ -e $CONFIG_FILE ]]; } || { echo 'No config file found. Consider decreasing the parallel count… 31 - retry_failed git clone $TEST_ENV_CONFIG_REPO 32 - python $CHECKOUT_REF_SCRIPT ci-test-runner-configs ci-test-runner-configs [all …]
|
D | pre_check.yml | 5 - host_test 10 - .pre_check_base_template 11 - .before_script_no_sync_submodule 15 image: "$CI_DOCKER_REGISTRY/esp-idf-pre-commit:1" 17 - source tools/ci/utils.sh 18 - export PYTHONPATH="$CI_PROJECT_DIR/tools:$CI_PROJECT_DIR/tools/ci/python_packages:$PYTHONPATH" 22 - .check_pre_commit_template 23 - .rules:protected 25 … - git diff-tree --no-commit-id --name-only -r $PIPELINE_COMMIT_SHA | xargs pre-commit run --files 29 - .check_pre_commit_template [all …]
|
/hal_espressif-3.5.0/.gitlab/ci/dependencies/ |
D | dependencies.yml | 2 - esp32 3 - esp32s2 4 - esp32s3 5 - esp32c3 8 - example_test 9 - custom_test 10 - unit_test 11 - component_ut 18 - build 20 - build_components [all …]
|
D | generate_rules.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 28 except ImportError: # used when pre-commit, skip generating image 39 def _list(str_or_list): # type: (Union[str, list]) -> list 48 def _format_nested_dict(_dict, f_tuple): # type: (dict[str, dict], tuple[str, ...]) -> dict[str, d… 62 def _format_nested_list(_list, f_tuple): # type: (list[str], tuple[str, ...]) -> list[str] 83 .if-label-{0}: &if-label-{0} 87 RULE_PROTECTED = ' - <<: *if-protected' 88 RULE_PROTECTED_NO_LABEL = ' - <<: *if-protected-no_label' 89 RULE_BUILD_ONLY = ' - <<: *if-label-build-only\n' \ 91 RULE_LABEL_TEMPLATE = ' - <<: *if-label-{0}' [all …]
|
/hal_espressif-3.5.0/tools/test_apps/security/secure_boot/ |
D | README.md | 1 | Supported Targets | ESP32 | ESP32-S2 | ESP32-C3 | ESP32-S3 | 2 | ----------------- | ----- | -------- | -------- | -------- | 14 * ESP32-ECO3 (supports Secure Boot V2 & Secure Boot V1) 16 * ESP32C3-ECO3 (supports Secure Boot V2) 19 It is recommended to use Secure Boot V2 from ESP32-ECO3 onwards. 29 …2 is Secure Boot V1. The chip revision should be changed to revision 3(ESP32- ECO3) to view the Se… 31 …-> "ESP32- Specific"->"Minimum Supported ESP32 Revision" to Rev 3. Now, set Secure Boot V2 option … 33 … $IDF_PATH/components/esptool_py/esptool/espsecure.py generate_signing_key --version {VERSION} sec… 41 - The below steps can be used in any application to enable secure boot. 43 - Secure Boot is an irreversible operation, please read the Secure Boot section in ESP-IDF Programm… [all …]
|
/hal_espressif-3.5.0/tools/ci/python_packages/ttfw_idf/ |
D | IDFAssignTest.py | 103 LOCAL_BUILD_DIR = 'tools/unit-test-app/builds' # type: ignore 115 'esp32c3': 'ESP32C3DUT', 254 The unit test cases is stored in a yaml file which is created in job build-idf-test. 316 …parser.add_argument('case_group', choices=['example_test', 'custom_test', 'unit_test', 'component_… 318 parser.add_argument('-c', '--config', help='gitlab ci config file') 319 parser.add_argument('-o', '--output', help='output path of config files') 320 parser.add_argument('--pipeline_id', '-p', type=int, default=None, help='pipeline_id') 321 …parser.add_argument('--test-case-file-pattern', help='file name pattern used to find Python test c… 328 if args.case_group == 'example_test':
|
/hal_espressif-3.5.0/examples/system/ota/simple_ota_example/ |
D | example_test.py | 12 server_cert = '-----BEGIN CERTIFICATE-----\n' \ 31 '-----END CERTIFICATE-----\n' 33 server_key = '-----BEGIN PRIVATE KEY-----\n'\ 60 '-----END PRIVATE KEY-----\n' 115 sha256_bootloader = re.search(r'Validation Hash:\s+([a-f0-9]+)', output).group(1) 120 sha256_app = re.search(r'Validation Hash:\s+([a-f0-9]+)', output).group(1) 148 …check_sha256(sha256_bootloader, dut1.expect(re.compile(r'SHA-256 for bootloader:\s+([a-f0-9]+)'))[… 149 …check_sha256(sha256_app, dut1.expect(re.compile(r'SHA-256 for current firmware:\s+([a-f0-9]+)'))[0… 242 @ttfw_idf.idf_example_test(env_tag='Example_Flash_Encryption_OTA_WiFi', target=['esp32c3'], nightly… 306 …check_sha256(sha256_bootloader, dut1.expect(re.compile(r'SHA-256 for bootloader:\s+([a-f0-9]+)'))[… [all …]
|