Searched refs:dio (Results 1 – 25 of 26) sorted by relevance
12
/Zephyr-latest/drivers/dp/ |
D | swdp_bitbang.c | 44 struct gpio_dt_spec dio; member 125 swdp_ll_pin_set(config->dio_reg, config->dio.pin); in pin_swdio_set() 127 gpio_pin_set_dt(&config->dio, 1); in pin_swdio_set() 145 swdp_ll_pin_clr(config->dio_reg, config->dio.pin); in pin_swdio_clr() 147 gpio_pin_set_dt(&config->dio, 0); in pin_swdio_clr() 169 return swdp_ll_pin_get(config->dio_reg, config->dio.pin); in pin_swdio_in() 171 return gpio_pin_get_dt(&config->dio); in pin_swdio_in() 191 swdp_ll_pin_output(config->dio_reg, config->dio.pin); in pin_swdio_out_enable() 193 gpio_pin_configure_dt(&config->dio, GPIO_OUTPUT_ACTIVE); in pin_swdio_out_enable() 213 swdp_ll_pin_input(config->dio_reg, config->dio.pin); in pin_swdio_out_disable() [all …]
|
/Zephyr-latest/samples/subsys/dap/ |
D | app.overlay | 14 dio-gpios = <&arduino_header 8 GPIO_PULL_UP>; /* D2 */
|
D | README.rst | 17 The simplest configuration would be to connect ``SWDIO`` to ``dio``, ``SWDCLK`` to ``clk``
|
/Zephyr-latest/tests/drivers/build_all/sensor/ |
D | gpio.dtsi | 17 dio-gpios = <&test_gpio 0 0>;
|
/Zephyr-latest/samples/subsys/dap/boards/ |
D | nrf52840dk_nrf52840.overlay | 12 dio-gpios = <&arduino_header 8 GPIO_PULL_UP>; /* D2 */
|
/Zephyr-latest/boards/shields/semtech_sx1272mb2das/ |
D | semtech_sx1272mb2das.overlay | 25 dio-gpios = <&arduino_header 8 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>, /* DIO0 is D2 */
|
/Zephyr-latest/tests/drivers/build_all/lora/ |
D | sx1272.overlay | 38 dio-gpios = <&test_gpio 0 0>,
|
/Zephyr-latest/boards/shields/semtech_sx1276mb1mas/ |
D | semtech_sx1276mb1mas.overlay | 25 dio-gpios = <&arduino_header 8 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>, /* DIO0 is D2 */
|
/Zephyr-latest/dts/arm/acsip/ |
D | s76s.dtsi | 23 dio-gpios =
|
/Zephyr-latest/dts/arm/atmel/ |
D | samr34.dtsi | 60 dio-gpios =
|
/Zephyr-latest/soc/espressif/common/ |
D | Kconfig.esptool | 71 default "dio" if ESPTOOLPY_FLASHMODE_QIO 72 default "dio" if ESPTOOLPY_FLASHMODE_QOUT 73 default "dio" if ESPTOOLPY_FLASHMODE_DIO
|
/Zephyr-latest/soc/espressif/esp32c3/ |
D | CMakeLists.txt | 38 --flash_mode dio --flash_freq 40m --flash_size ${esptoolpy_flashsize}MB
|
/Zephyr-latest/soc/espressif/esp32c6/ |
D | CMakeLists.txt | 38 --flash_mode dio --flash_freq 40m --flash_size ${esptoolpy_flashsize}MB
|
/Zephyr-latest/soc/espressif/esp32s2/ |
D | CMakeLists.txt | 38 --flash_mode dio --flash_freq 40m
|
/Zephyr-latest/boards/adafruit/feather_m0_lora/ |
D | adafruit_feather_m0_lora.dts | 83 dio-gpios = <&porta 9 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
|
/Zephyr-latest/boards/heltec/heltec_wifi_lora32_v2/ |
D | heltec_wifi_lora32_v2_procpu.dts | 102 dio-gpios =
|
/Zephyr-latest/boards/96boards/wistrio/ |
D | 96b_wistrio.dts | 116 dio-gpios = <&gpioa 11 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>,
|
/Zephyr-latest/soc/espressif/esp32c2/ |
D | CMakeLists.txt | 35 --flash_mode dio --flash_freq 60m --flash_size ${esptoolpy_flashsize}MB
|
/Zephyr-latest/boards/lilygo/ttgo_lora32/ |
D | ttgo_lora32_esp32_procpu.dts | 95 dio-gpios =
|
/Zephyr-latest/soc/espressif/esp32/ |
D | CMakeLists.txt | 56 --flash_mode dio --flash_freq 40m
|
/Zephyr-latest/soc/espressif/esp32s3/ |
D | CMakeLists.txt | 60 --flash_mode dio --flash_freq 40m
|
/Zephyr-latest/boards/ezurio/rm1xx_dvk/ |
D | rm1xx_dvk.dts | 95 dio-gpios = <&gpio0 12 GPIO_ACTIVE_HIGH>,
|
/Zephyr-latest/boards/bytesatwork/bytesensi_l/ |
D | bytesensi_l.dts | 139 dio-gpios =
|
/Zephyr-latest/boards/st/b_l072z_lrwan1/ |
D | b_l072z_lrwan1.dts | 121 dio-gpios = <&gpiob 4 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>,
|
/Zephyr-latest/drivers/lora/ |
D | sx127x.c | 334 int dio = work - dev_data.dio_work; in sx127x_dio_work_handle() local 336 (*DioIrq[dio])(NULL); in sx127x_dio_work_handle()
|
12