| /Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/hal/RV32M1/ | 
| D | debug.h | 103 		gpio_pin_set(DEBUG0_PORT, DEBUG0_PIN, 1); \104 		gpio_pin_set(DEBUG0_PORT, DEBUG0_PIN, 0); \
 107 #define DEBUG_CPU_SLEEP(flag) gpio_pin_set(DEBUG0_PORT, DEBUG0_PIN, flag)
 109 #define DEBUG_TICKER_ISR(flag) gpio_pin_set(DEBUG1_PORT, DEBUG1_PIN, flag)
 111 #define DEBUG_TICKER_TASK(flag) gpio_pin_set(DEBUG1_PORT, DEBUG1_PIN, flag)
 113 #define DEBUG_TICKER_JOB(flag) gpio_pin_set(DEBUG2_PORT, DEBUG2_PIN, flag)
 115 #define DEBUG_RADIO_ISR(flag) gpio_pin_set(DEBUG7_PORT, DEBUG7_PIN, flag)
 117 #define DEBUG_RADIO_XTAL(flag) gpio_pin_set(DEBUG8_PORT, DEBUG8_PIN, flag)
 119 #define DEBUG_RADIO_ACTIVE(flag) gpio_pin_set(DEBUG9_PORT, DEBUG9_PIN, flag)
 124 			gpio_pin_set(DEBUG3_PORT, DEBUG3_PIN, flag); \
 [all …]
 
 | 
| /Zephyr-latest/samples/boards/ti/cc13x2_cc26x2/system_off/src/ | 
| D | ext_flash.c | 30 	gpio_pin_set(dev, DIO20_PIN, 0);  in CC1352R1_LAUNCHXL_sendExtFlashByte()33 		gpio_pin_set(dev, DIO10_PIN, 0); /* SPI Flash CLK */  in CC1352R1_LAUNCHXL_sendExtFlashByte()
 36 		gpio_pin_set(dev, DIO9_PIN, (byte >> (7 - i)) & 0x01);  in CC1352R1_LAUNCHXL_sendExtFlashByte()
 37 		gpio_pin_set(dev, DIO10_PIN, 1); /* SPI Flash CLK */  in CC1352R1_LAUNCHXL_sendExtFlashByte()
 47 	gpio_pin_set(dev, DIO10_PIN, 0);   /* CLK */  in CC1352R1_LAUNCHXL_sendExtFlashByte()
 48 	gpio_pin_set(dev, DIO20_PIN, 1);   /* CS */  in CC1352R1_LAUNCHXL_sendExtFlashByte()
 68 	gpio_pin_set(dev, DIO20_PIN, 0);  in CC1352R1_LAUNCHXL_wakeUpExtFlash()
 71 	gpio_pin_set(dev, DIO20_PIN, 1);  in CC1352R1_LAUNCHXL_wakeUpExtFlash()
 
 | 
| /Zephyr-latest/boards/silabs/starter_kits/slstk3701a/ | 
| D | board.c | 27 	gpio_pin_set(cur_dev, ETH_PWR_ENABLE_GPIO_PIN, 1);  in efm32gg_stk3701a_init()37 	gpio_pin_set(cur_dev, ETH_REF_CLK_GPIO_PIN, 0);  in efm32gg_stk3701a_init()
 55 	gpio_pin_set(cur_dev, ETH_RESET_GPIO_PIN, 1);  in efm32gg_stk3701a_init()
 
 | 
| /Zephyr-latest/boards/nordic/nrf9160dk/ | 
| D | nrf52840_reset.c | 42 	err = gpio_pin_set(port, RESET_GPIO_PIN, 1);  in bt_hci_transport_setup()60 	err = gpio_pin_set(port, RESET_GPIO_PIN, 0);  in bt_hci_transport_setup()
 
 | 
| /Zephyr-latest/samples/subsys/tracing/src/ | 
| D | gpio_main.c | 35 	gpio_pin_set(dev, 0, 1);  in gpio_sample()36 	gpio_pin_set(dev, 0, 0);  in gpio_sample()
 
 | 
| /Zephyr-latest/tests/drivers/gpio/gpio_nrf/src/ | 
| D | main.c | 76 	response = gpio_pin_set(port, TEST_PIN, 0);  in ZTEST()79 	response = gpio_pin_set(port, TEST_PIN, 1);  in ZTEST()
 
 | 
| /Zephyr-latest/boards/silabs/radio_boards/slwrb4321a/ | 
| D | board.c | 28 	gpio_pin_set(cur_dev, ETH_REF_CLK_GPIO_PIN, 0);  in efm32gg_slwstk6121a_init()
 | 
| /Zephyr-latest/samples/boards/st/power_mgmt/wkup_pins/src/ | 
| D | main.c | 32 	gpio_pin_set(led.port, led.pin, 1);  in main()
 | 
| /Zephyr-latest/samples/bluetooth/peripheral_hr/src/ | 
| D | main.c | 138 	gpio_pin_set(led.port, led.pin, (int)led_is_on);  in blink_timeout()171 	gpio_pin_set(led.port, led.pin, (int)led_is_on);  in blink_start()
 184 	gpio_pin_set(led.port, led.pin, (int)led_is_on);  in blink_stop()
 
 | 
| /Zephyr-latest/samples/boards/st/power_mgmt/blinky/src/ | 
| D | main.c | 33 		gpio_pin_set(led.port, led.pin, (int)led_is_on);  in main()
 | 
| /Zephyr-latest/samples/bluetooth/st_ble_sensor/src/ | 
| D | led_svc.c | 31 	gpio_pin_set(led.port, led.pin, led_state);  in led_update()
 | 
| /Zephyr-latest/samples/boards/st/power_mgmt/stop3/src/ | 
| D | main.c | 42 		gpio_pin_set(led.port, led.pin, (int)led_is_on);  in main()
 | 
| /Zephyr-latest/samples/subsys/mgmt/osdp/peripheral_device/src/ | 
| D | main.c | 55 		gpio_pin_set(led0.port, led0.pin, led_state);  in main()
 | 
| /Zephyr-latest/tests/drivers/gpio/gpio_basic_api/src/ | 
| D | test_callback_trigger.c | 30 		gpio_pin_set(dev_out, PIN_OUT, 0);  in callback()87 	gpio_pin_set(dev_out, PIN_OUT, 1);  in test_callback()
 
 | 
| D | test_callback_manage.c | 69 	gpio_pin_set(dev_out, PIN_OUT, 0);  in trigger_callback()80 	gpio_pin_set(dev_out, PIN_OUT, 1);  in trigger_callback()
 149 	gpio_pin_set(dev_out, PIN_OUT, 0);  in test_callback_self_remove()
 
 | 
| /Zephyr-latest/boards/silabs/dev_kits/sltb004a/ | 
| D | board.c | 24 		gpio_pin_set(cfg->gpio, cfg->pin, 1);  in enable_supply()
 | 
| /Zephyr-latest/samples/boards/st/h7_dual_core/src/ | 
| D | main.c | 30 	gpio_pin_set(ipm_data->led->port, ipm_data->led->pin, (int)ipm_data->led_is_on);  in new_message_callback()
 | 
| /Zephyr-latest/samples/bluetooth/periodic_sync/src/ | 
| D | main.c | 40 	gpio_pin_set(led.port, led.pin, (int)led_is_on);  in blink_timeout()236 		gpio_pin_set(led.port, led.pin, (int)led_is_on);  in main()
 283 		gpio_pin_set(led.port, led.pin, (int)led_is_on);  in main()
 
 | 
| /Zephyr-latest/samples/subsys/mgmt/osdp/control_panel/src/ | 
| D | main.c | 101 		gpio_pin_set(led0.port, led0.pin, led_state);  in main()
 | 
| /Zephyr-latest/subsys/modbus/ | 
| D | modbus_serial.c | 37 		gpio_pin_set(cfg->de->port, cfg->de->pin, 1);  in modbus_serial_tx_on()49 		gpio_pin_set(cfg->de->port, cfg->de->pin, 0);  in modbus_serial_tx_off()
 58 		gpio_pin_set(cfg->re->port, cfg->re->pin, 1);  in modbus_serial_rx_on()
 70 		gpio_pin_set(cfg->re->port, cfg->re->pin, 0);  in modbus_serial_rx_off()
 
 | 
| /Zephyr-latest/samples/basic/threads/src/ | 
| D | main.c | 73 		gpio_pin_set(spec->port, spec->pin, cnt % 2);  in blink()
 | 
| /Zephyr-latest/samples/bluetooth/hci_spi/src/ | 
| D | main.c | 132 	gpio_pin_set(irq.port, irq.pin, 1);  in spi_send()157 	gpio_pin_set(irq.port, irq.pin, 0);  in spi_send()
 
 | 
| /Zephyr-latest/samples/boards/st/power_mgmt/standby_shutdown/src/ | 
| D | main.c | 148 		gpio_pin_set(led.port, led.pin, (int)led_is_on);  in main()
 | 
| /Zephyr-latest/samples/subsys/modbus/rtu_server/src/ | 
| D | main.c | 60 	gpio_pin_set(led_dev[addr].port, led_dev[addr].pin, (int)on);  in coil_wr()
 | 
| /Zephyr-latest/samples/bluetooth/mesh/src/ | 
| D | board.c | 124 	gpio_pin_set(led_dev, LED0_PIN, val);  in board_led_set()
 |