/hal_espressif-3.6.0/components/driver/ |
D | dedic_gpio.c | 193 dedic_gpio_bundle_t *bundle = NULL; in dedic_gpio_new_bundle() local 205 bundle = calloc(1, bundle_size); in dedic_gpio_new_bundle() 206 ESP_GOTO_ON_FALSE(bundle, ESP_ERR_NO_MEM, err, TAG, "no mem for bundle"); in dedic_gpio_new_bundle() 233 …ESP_LOGD(TAG, "new outward bundle(%p) on core[%d], offset=%d, mask(%x)", bundle, core_id, out_offs… in dedic_gpio_new_bundle() 255 …ESP_LOGD(TAG, "new inward bundle(%p) on core[%d], offset=%d, mask(%x)", bundle, core_id, in_offset… in dedic_gpio_new_bundle() 276 bundle->core_id = core_id; in dedic_gpio_new_bundle() 277 bundle->out_mask = out_mask; in dedic_gpio_new_bundle() 278 bundle->in_mask = in_mask; in dedic_gpio_new_bundle() 279 bundle->out_offset = out_offset; in dedic_gpio_new_bundle() 280 bundle->in_offset = in_offset; in dedic_gpio_new_bundle() [all …]
|
/hal_espressif-3.6.0/components/mbedtls/esp_crt_bundle/test_gen_crt_bundle/ |
D | test_gen_crt_bundle.py | 45 bundle = gen_crt_bundle.CertificateBundle() 46 bundle.add_from_file(test_crts_path + der_test_file) 48 crt_bundle = bundle.create_bundle() 57 bundle = gen_crt_bundle.CertificateBundle() 58 bundle.add_from_file(test_crts_path + pem_test_file) 60 crt_bundle = bundle.create_bundle() 68 bundle = gen_crt_bundle.CertificateBundle() 71 bundle.add_from_file(test_crts_path + invalid_test_file) 74 bundle.add_from_pem('') 77 bundle = gen_crt_bundle.CertificateBundle() [all …]
|
/hal_espressif-3.6.0/docs/en/api-reference/protocols/ |
D | esp_crt_bundle.rst | 7 The ESP x509 Certificate Bundle API provides an easy way to include a bundle of custom x509 root ce… 9 .. note:: The bundle is currently not available when using WolfSSL. 11 The bundle comes with the complete list of root certificates from Mozilla’s NSS root certificate st… 13 When generating the bundle you may choose between: 15 …* The full root certificate bundle from Mozilla, containing more than 130 certificates. The curren… 18 …icate file or a directory containing certificates which then will be added to the generated bundle. 25 Most configuration is done through menuconfig. Make and CMake will generate the bundle according to… 27 * :ref:`CONFIG_MBEDTLS_CERTIFICATE_BUNDLE`: automatically build and attach the bundle. 29 …M_CERTIFICATE_BUNDLE_PATH`: specify the path of any additional certificates to embed in the bundle. 31 To enable the bundle when using ESP-TLS simply pass the function pointer to the bundle attach funct… [all …]
|
D | esp_tls.rst | 51 …*: The ESP x509 Certificate Bundle API provides an easy way to include a bundle of custom x509 roo…
|
/hal_espressif-3.6.0/components/driver/include/driver/ |
D | dedic_gpio.h | 65 esp_err_t dedic_gpio_del_bundle(dedic_gpio_bundle_handle_t bundle); 82 esp_err_t dedic_gpio_get_out_mask(dedic_gpio_bundle_handle_t bundle, uint32_t *mask); 83 esp_err_t dedic_gpio_get_in_mask(dedic_gpio_bundle_handle_t bundle, uint32_t *mask); 97 void dedic_gpio_bundle_write(dedic_gpio_bundle_handle_t bundle, uint32_t mask, uint32_t value) IRAM… 107 uint32_t dedic_gpio_bundle_read_out(dedic_gpio_bundle_handle_t bundle) IRAM_ATTR; 117 uint32_t dedic_gpio_bundle_read_in(dedic_gpio_bundle_handle_t bundle) IRAM_ATTR; 141 typedef bool (*dedic_gpio_isr_callback_t)(dedic_gpio_bundle_handle_t bundle, uint32_t index, void *… 161 esp_err_t dedic_gpio_bundle_set_interrupt_and_callback(dedic_gpio_bundle_handle_t bundle, uint32_t …
|
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/ |
D | dedic_gpio.rst | 13 …bundle is a group of GPIOs, which can be manipulated at the same time in one CPU cycle. The maxima… 16 …nship with CPU core. It's highly recommended to install and operate GPIO bundle in a pin-to-core t… 18 …bundle, one needs to call :cpp:func:`dedic_gpio_new_bundle` to allocate the software resources and… 27 The following code shows how to install a output only GPIO bundle: 53 To uninstall the GPIO bundle, one needs to call :cpp:func:`dedic_gpio_del_bundle`. 56 …ive ability, output/input enable), so before installing a dedicated GPIO bundle, you have to confi… 68 * - Write to GPIOs in the bundle by mask 70 * - Read the value that input to bundle 72 * - Read the value that output from bundle 92 …IRAM_ATTR bool dedic_gpio_isr_callback(dedic_gpio_bundle_handle_t bundle, uint32_t index, void *ar… [all …]
|
/hal_espressif-3.6.0/components/mbedtls/esp_crt_bundle/ |
D | gen_crt_bundle.py | 134 bundle = struct.pack('>H', len(self.certificates)) 148 bundle += len_data 149 bundle += sub_name_der 150 bundle += pub_key_der 152 return bundle 201 bundle = CertificateBundle() 206 bundle.add_with_filter(path, args.filter) 208 bundle.add_from_file(path) 210 bundle.add_from_path(path) 214 status('Successfully added %d certificates in total' % len(bundle.certificates)) [all …]
|
D | cacrt_all.pem | 6 ## This is a bundle of X.509 certificates of public Certificate Authorities 16 ## Conversion done with mk-ca-bundle.pl version 1.28.
|
/hal_espressif-3.6.0/examples/protocols/https_x509_bundle/ |
D | README.md | 3 This example shows how to use the ESP certificate bundle utility to embed a bundle of x509 certific… 9 - ESP TLS is initialized with the certificate bundle option enabled. 41 I (7100) esp-x509-crt-bundle: Certificate validated 43 I (11730) esp-x509-crt-bundle: Certificate validated
|
/hal_espressif-3.6.0/components/driver/test/ |
D | test_dedicated_gpio.c | 186 dedic_gpio_bundle_handle_t bundle = NULL; variable 195 TEST_ESP_OK(dedic_gpio_new_bundle(&bundle_config, &bundle)); 205 dedic_gpio_bundle_write(bundle, BIT(1), 0x00); 206 dedic_gpio_bundle_write(bundle, BIT(1), 0xFF); 215 TEST_ESP_OK(dedic_gpio_del_bundle(bundle));
|
/hal_espressif-3.6.0/examples/protocols/https_mbedtls/ |
D | README.md | 5 …es mbedTLS to establish a secure socket connection using the certificate bundle with two custom ce… 41 I (9619) example: Attaching the certificate bundle... 47 I (10789) esp-x509-crt-bundle: Certificate validated
|
/hal_espressif-3.6.0/components/mbedtls/test/ |
D | test_esp_crt_bundle.c | 259 int client_task(const uint8_t *bundle, esp_crt_validate_res_t *res) in client_task() argument 273 if (bundle) { in client_task() 275 esp_crt_bundle_set(bundle); in client_task()
|
/hal_espressif-3.6.0/examples/protocols/https_request/ |
D | README.md | 58 I (5654) example: https_request using crt bundle 60 I (7074) esp-x509-crt-bundle: Certificate validated
|
/hal_espressif-3.6.0/components/mbedtls/ |
D | CMakeLists.txt | 20 # Generate custom certificate bundle using the generate_cert_bundle utility 42 # Generate bundle according to config
|
D | Kconfig | 290 bool "Enable trusted root certificate bundle" 301 bool "Default certificate bundle options" 306 bool "Use the full default certificate bundle" 313 bool "Do not use the default certificate bundle" 319 bool "Add custom certificates to the default bundle" 322 string "Custom certificate bundle path"
|
/hal_espressif-3.6.0/examples/peripherals/i2s/i2s_adc_dac/ |
D | README.md | 18 * The script will bundle the `wav` files into a single table named `audio_example_file.h`.
|
/hal_espressif-3.6.0/tools/ci/python_packages/tiny_test_fw/docs/ |
D | index.rst | 99 * tool methods provided by the tool bundle, like ``start_app``, ``reset``
|