Home
last modified time | relevance | path

Searched refs:GPIO_PULLUP_ONLY (Results 1 – 22 of 22) sorted by relevance

/hal_espressif-3.5.0/examples/protocols/http_server/restful_server/main/
Desp_rest_main.c65 gpio_set_pull_mode(15, GPIO_PULLUP_ONLY); // CMD in init_fs()
66 gpio_set_pull_mode(2, GPIO_PULLUP_ONLY); // D0 in init_fs()
67 gpio_set_pull_mode(4, GPIO_PULLUP_ONLY); // D1 in init_fs()
68 gpio_set_pull_mode(12, GPIO_PULLUP_ONLY); // D2 in init_fs()
69 gpio_set_pull_mode(13, GPIO_PULLUP_ONLY); // D3 in init_fs()
/hal_espressif-3.5.0/examples/protocols/http_server/file_serving/main/
Dmain.c151 gpio_set_pull_mode(15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1- line modes in sdcard_mount()
152 gpio_set_pull_mode(2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes in sdcard_mount()
153 gpio_set_pull_mode(4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only in sdcard_mount()
154 gpio_set_pull_mode(12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only in sdcard_mount()
155 gpio_set_pull_mode(13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes in sdcard_mount()
/hal_espressif-3.5.0/examples/peripherals/spi_slave/receiver/main/
Dapp_main.c131 gpio_set_pull_mode(GPIO_MOSI, GPIO_PULLUP_ONLY); in app_main()
132 gpio_set_pull_mode(GPIO_SCLK, GPIO_PULLUP_ONLY); in app_main()
133 gpio_set_pull_mode(GPIO_CS, GPIO_PULLUP_ONLY); in app_main()
/hal_espressif-3.5.0/examples/network/simple_sniffer/main/
Dsimple_sniffer_example_main.c288 gpio_set_pull_mode(15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1-line modes in mount()
289 gpio_set_pull_mode(2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes in mount()
290 gpio_set_pull_mode(4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only in mount()
291 gpio_set_pull_mode(12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only in mount()
292 gpio_set_pull_mode(13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes in mount()
/hal_espressif-3.5.0/components/esp_hw_support/
Dsleep_gpio.c66 gpio_sleep_set_pull_mode(esp_spiram_get_cs_io(), GPIO_PULLUP_ONLY); in esp_sleep_config_gpio_isolate()
69 gpio_sleep_set_pull_mode(bootloader_flash_get_cs_io(), GPIO_PULLUP_ONLY); in esp_sleep_config_gpio_isolate()
/hal_espressif-3.5.0/components/driver/test/
Dtest_common_spi.c103 gpio_set_pull_mode(cfg->mosi_io_num, GPIO_PULLUP_ONLY); in slave_pull_up()
104 gpio_set_pull_mode(cfg->sclk_io_num, GPIO_PULLUP_ONLY); in slave_pull_up()
105 gpio_set_pull_mode(spics_io_num, GPIO_PULLUP_ONLY); in slave_pull_up()
Dtest_spi_slave.c84 gpio_set_pull_mode(PIN_NUM_MOSI, GPIO_PULLUP_ONLY); in slave_init()
85 gpio_set_pull_mode(PIN_NUM_CLK, GPIO_PULLUP_ONLY); in slave_init()
86 gpio_set_pull_mode(PIN_NUM_CS, GPIO_PULLUP_ONLY); in slave_init()
Dtest_gpio.c628 TEST_ESP_OK(gpio_set_pull_mode(TEST_GPIO_EXT_OUT_IO, GPIO_PULLUP_ONLY));
632 TEST_ESP_OK(gpio_set_pull_mode(TEST_GPIO_EXT_OUT_IO, GPIO_PULLUP_ONLY));
636 TEST_ESP_OK(gpio_set_pull_mode(TEST_GPIO_EXT_OUT_IO, GPIO_PULLUP_ONLY));
640 TEST_ESP_OK(gpio_set_pull_mode(TEST_GPIO_EXT_OUT_IO, GPIO_PULLUP_ONLY));
644 TEST_ESP_OK(gpio_set_pull_mode(TEST_GPIO_EXT_OUT_IO, GPIO_PULLUP_ONLY));
Dtest_adc_common.c101 TEST_ESP_OK(gpio_set_pull_mode(gpio_num, GPIO_PULLUP_ONLY)); in adc_fake_tie_high()
110 TEST_ESP_OK(gpio_set_pull_mode(gpio_num, GPIO_PULLUP_ONLY)); in adc_fake_tie_high()
Dtest_adc2_with_wifi.c252 gpio_set_pull_mode(ADC1_CHANNEL_4_IO, GPIO_PULLUP_ONLY); in i2s_adc_test()
Dtest_i2s.c672 gpio_set_pull_mode(ADC1_CHANNEL_4_IO, GPIO_PULLUP_ONLY);
/hal_espressif-3.5.0/tools/mocks/hal/include/hal/
Dgpio_types.h110 GPIO_PULLUP_ONLY, /*!< Pad pull up */ enumerator
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/
Dgpio_cxx.cpp73 return GPIOPullMode(GPIO_PULLUP_ONLY); in PULLUP()
/hal_espressif-3.5.0/components/driver/
Dpcnt.c82 gpio_set_pull_mode(pulse_io, GPIO_PULLUP_ONLY); in _pcnt_set_pin()
89 gpio_set_pull_mode(ctrl_io, GPIO_PULLUP_ONLY); in _pcnt_set_pin()
Dgpio.c243 case GPIO_PULLUP_ONLY: in gpio_set_pull_mode()
832 case GPIO_PULLUP_ONLY: in gpio_sleep_set_pull_mode()
Di2c.c873 gpio_set_pull_mode(sda_io_num, GPIO_PULLUP_ONLY); in i2c_set_pin()
887 gpio_set_pull_mode(scl_io_num, GPIO_PULLUP_ONLY); in i2c_set_pin()
Duart.c687 gpio_set_pull_mode(rx_io_num, GPIO_PULLUP_ONLY); in uart_set_pin()
700 gpio_set_pull_mode(cts_io_num, GPIO_PULLUP_ONLY); in uart_set_pin()
/hal_espressif-3.5.0/components/hal/include/hal/
Dgpio_types.h402 GPIO_PULLUP_ONLY, /*!< Pad pull up */ enumerator
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/host_test/gpio/main/
Dgpio_cxx_test.cpp235 …gpio_set_pull_mode_ExpectAndReturn(static_cast<gpio_num_t>(fix.num.get_num()), GPIO_PULLUP_ONLY, E…
/hal_espressif-3.5.0/components/esp_eth/src/
Desp_eth_mac_w5500.c596 gpio_set_pull_mode(emac->int_gpio_num, GPIO_PULLUP_ONLY); in emac_w5500_init()
Desp_eth_mac_ksz8851snl.c243 gpio_set_pull_mode(emac->int_gpio_num, GPIO_PULLUP_ONLY); in emac_ksz8851_init()
/hal_espressif-3.5.0/examples/ethernet/enc28j60/components/eth_enc28j60/
Desp_eth_mac_enc28j60.c1010 gpio_set_pull_mode(emac->int_gpio_num, GPIO_PULLUP_ONLY); in emac_enc28j60_init()