Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/driver/test/
Dtest_dedicated_gpio.c43 …TEST_ASSERT_EQUAL_MESSAGE(ESP_ERR_INVALID_ARG, dedic_gpio_new_bundle(&bundle_config, &test_bundle)…
46 …TEST_ASSERT_EQUAL_MESSAGE(ESP_OK, dedic_gpio_new_bundle(&bundle_config, &test_bundle), "create bun…
53 …TEST_ASSERT_EQUAL_MESSAGE(ESP_ERR_NOT_FOUND, dedic_gpio_new_bundle(&bundle_config2, &test_bundle2)…
56 …TEST_ASSERT_EQUAL_MESSAGE(ESP_ERR_INVALID_ARG, dedic_gpio_new_bundle(&bundle_config3, &test_bundle…
90 TEST_ESP_OK(dedic_gpio_new_bundle(&bundleA_config, &bundleA)); in test_dedic_gpio_on_specific_core()
110 TEST_ESP_OK(dedic_gpio_new_bundle(&bundleB_config, &bundleB)); in test_dedic_gpio_on_specific_core()
195 TEST_ESP_OK(dedic_gpio_new_bundle(&bundle_config, &bundle));
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Ddedic_gpio.rst18 To install a GPIO bundle, one needs to call :cpp:func:`dedic_gpio_new_bundle` to allocate the softw…
51 ESP_ERROR_CHECK(dedic_gpio_new_bundle(&bundleA_config, &bundleA));
56 …:cpp:func:`dedic_gpio_new_bundle` doesn't cover any GPIO pad configuration (e.g. pull up/down, dri…
112 1. Allocate a GPIO bundle: :cpp:func:`dedic_gpio_new_bundle`
/hal_espressif-3.6.0/examples/peripherals/gpio/matrix_keyboard/components/matrix_keyboard/src/
Dmatrix_keyboard.c135 MKBD_CHECK(dedic_gpio_new_bundle(&bundle_row_config, &mkbd->row_bundle) == ESP_OK, in matrix_kbd_install()
151 MKBD_CHECK(dedic_gpio_new_bundle(&bundle_col_config, &mkbd->col_bundle) == ESP_OK, in matrix_kbd_install()
/hal_espressif-3.6.0/components/driver/include/driver/
Ddedic_gpio.h54 esp_err_t dedic_gpio_new_bundle(const dedic_gpio_bundle_config_t *config, dedic_gpio_bundle_handle_…
/hal_espressif-3.6.0/components/driver/
Ddedic_gpio.c190 esp_err_t dedic_gpio_new_bundle(const dedic_gpio_bundle_config_t *config, dedic_gpio_bundle_handle_… in dedic_gpio_new_bundle() function