/Zephyr-latest/samples/net/cellular_modem/server/ |
D | te.py | 4 import signal 24 signal.signal(signal.SIGTERM, terminate_handler) 25 signal.signal(signal.SIGINT, terminate_handler)
|
/Zephyr-latest/drivers/i2s/ |
D | Kconfig.sam_ssc | 30 If enabled RF signal is connected to RF pin. It will be configured as 34 If disabled RF signal is disconnected from RF pin and connected 35 internally to TF (Transmitter Frame Synchro signal). 41 If enabled RK signal is connected to RK pin. It will be configured as 45 If disabled RK signal is disconnected from RK pin and connected 46 internally to TK (Transmitter Clock signal).
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | haptics.rst | 12 During a haptic feedback event the haptic device drives a signal to an 13 actuator. The source of the haptic event signal varies depending on the 16 Some examples of haptic signal sources are analog signals, preprogrammed 20 tuning the drive signal to meet the electrical requirements of their respective
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | blackmagicprobe.py | 10 import signal 184 previous = signal.signal(signal.SIGINT, signal.SIG_IGN) 188 signal.signal(signal.SIGINT, previous)
|
/Zephyr-latest/boards/adi/max32672fthr/doc/ |
D | index.rst | 144 | 8 | P0_22 | GPIO or ADC_TRIG signal. … 146 | 9 | P0_27 | GPIO or QERR signal. … 148 | 10 | P0_26 | GPIO or QDIR signal. … 150 | 11 | P0_16 | GPIO or SPI1 clock signal. … 152 | 12 | P0_15 | GPIO or SPI1 MOSI signal. … 154 | 13 | P0_14 | GPIO or SPI1 MISO signal. … 156 | 14 | P0_28 | GPIO or UART1 Rx signal. … 158 | 15 | P0_29 | GPIO or UART1 Tx signal. … 178 | 4 | P0_5 | GPIO or HFX_CLK_OUT signal. … 180 | 5 | P0_6 | GPIO or QEA signal. … [all …]
|
/Zephyr-latest/dts/arm/infineon/cat1a/legacy/ |
D | pinctrl_cypress_psoc6.h | 93 #define DT_CYPRESS_HSIOM(inst, signal, port, pin, hsiom, ...) \ argument 94 p##port##_##pin##_##inst##_##signal: \ 95 p##port##_##pin##_##inst##_##signal { \
|
/Zephyr-latest/drivers/espi/ |
D | espi_npcx.c | 220 enum espi_vwire_signal signal, uint8_t *level); 222 enum espi_vwire_signal signal, uint8_t level); 559 enum espi_vwire_signal signal) in espi_vw_notify_system_state() argument 565 espi_npcx_receive_vwire(dev, signal, &wire); in espi_vw_notify_system_state() 567 data->sx_state = signal; in espi_vw_notify_system_state() 570 evt.evt_details = signal; in espi_vw_notify_system_state() 576 enum espi_vwire_signal signal) in espi_vw_notify_host_warning() argument 580 espi_npcx_receive_vwire(dev, signal, &wire); in espi_vw_notify_host_warning() 583 switch (signal) { in espi_vw_notify_host_warning() 650 enum espi_vwire_signal signal; in espi_vw_generic_isr() local [all …]
|
/Zephyr-latest/drivers/video/ |
D | video_sw_generator.c | 37 struct k_poll_signal *signal; member 174 if (IS_ENABLED(CONFIG_POLL) && data->signal) { in __buffer_work() 175 k_poll_signal_raise(data->signal, VIDEO_BUF_DONE); in __buffer_work() 226 if (IS_ENABLED(CONFIG_POLL) && data->signal) { in video_sw_generator_flush() 227 k_poll_signal_raise(data->signal, VIDEO_BUF_ABORTED); in video_sw_generator_flush() 249 struct k_poll_signal *signal) in video_sw_generator_set_signal() argument 253 if (data->signal && signal != NULL) { in video_sw_generator_set_signal() 257 data->signal = signal; in video_sw_generator_set_signal()
|
/Zephyr-latest/boards/nxp/twr_ke18f/ |
D | Kconfig | 9 bool "CLKOUT signal on FlexIO header" 12 Enable the CLKOUT signal on FlexIO header pin 7 (PTE10).
|
/Zephyr-latest/drivers/adc/ |
D | adc_context.h | 66 struct k_poll_signal *signal; member 139 struct k_poll_signal *signal) in adc_context_lock() argument 145 ctx->signal = signal; in adc_context_lock() 192 if (ctx->signal) { in adc_context_complete() 193 k_poll_signal_raise(ctx->signal, status); in adc_context_complete()
|
/Zephyr-latest/samples/bluetooth/handsfree/src/ |
D | main.c | 52 static void signal(struct bt_conn *conn, uint32_t value) in signal() function 79 .signal = signal,
|
/Zephyr-latest/samples/drivers/adc/adc_sequence/boards/ |
D | mimxrt595_evk_cm33.overlay | 22 * - Connect LPADC0 CH0A signal to voltage between 0~1.8V (J30 pin 1) 23 * - Connect LPADC0 CH0B signal to voltage between 0~1.8V (J30 pin 2) 25 * - Connect LPADC0 CH2A signal to voltage between 0~1.8V (J30 pin 3)
|
D | lpcxpresso55s69_cpu0.overlay | 24 * - Connect LPADC0 CH0A signal to voltage between 0~3.3V (P19 pin 4) 25 * - Connect LPADC0 CH0B signal to voltage between 0~3.3V (P19 pin 2) 27 * - Connect LPADC0 CH4A signal to voltage between 0~3.3V (P17 pin 19) 29 * - Connect LPADC0 CH4B signal to voltage between 0~3.3V (P18 pin 1)
|
/Zephyr-latest/doc/kernel/services/ |
D | polling.rst | 29 - a poll signal is raised 37 its state is changed to signal the requested condition has been met. 48 Apart from the kernel objects, there is also a **poll signal** pseudo-object 214 signal to a poll event. This can be seen as a lightweight binary semaphore only 217 A poll signal is a separate object of type :c:struct:`k_poll_signal` that 224 struct k_poll_signal signal; 227 k_poll_signal_init(&signal); 236 struct k_poll_signal signal; 241 k_poll_signal_init(&signal); 246 &signal), [all …]
|
/Zephyr-latest/samples/drivers/adc/adc_dt/boards/ |
D | frdm_mcxn236.overlay | 24 * - Connect LPADC0 CH1A signal to voltage between 0~1.8V (J4 pin 4) 25 * - Connect LPADC0 CH1B signal to voltage between 0~1.8V (J8 pin 11) 27 * - Connect LPADC0 CH2A signal to voltage between 0~1.8V (J8 pin 12)
|
D | frdm_mcxn947_mcxn947_cpu0.overlay | 24 * - Connect LPADC0 CH1A signal to voltage between 0~1.8V (J8 pin 20) 25 * - Connect LPADC0 CH1B signal to voltage between 0~1.8V (J8 pin 24) 27 * - Connect LPADC0 CH2A signal to voltage between 0~1.8V (J8 pin 28)
|
D | frdm_mcxn947_mcxn947_cpu0_qspi.overlay | 24 * - Connect LPADC0 CH1A signal to voltage between 0~1.8V (J8 pin 20) 25 * - Connect LPADC0 CH1B signal to voltage between 0~1.8V (J8 pin 24) 27 * - Connect LPADC0 CH2A signal to voltage between 0~1.8V (J8 pin 28)
|
D | mimxrt595_evk_mimxrt595s_cm33.overlay | 24 * - Connect LPADC0 CH0A signal to voltage between 0~1.8V (J30 pin 1) 25 * - Connect LPADC0 CH0B signal to voltage between 0~1.8V (J30 pin 2) 27 * - Connect LPADC0 CH2A signal to voltage between 0~1.8V (J30 pin 3)
|
D | lpcxpresso55s69_lpc55s69_cpu0.overlay | 24 * - Connect LPADC0 CH0A signal to voltage between 0~3.3V (P19 pin 4) 25 * - Connect LPADC0 CH0B signal to voltage between 0~3.3V (P19 pin 2) 27 * - Connect LPADC0 CH4A signal to voltage between 0~3.3V (P17 pin 19) 29 * - Connect LPADC0 CH4B signal to voltage between 0~3.3V (P18 pin 1)
|
/Zephyr-latest/scripts/utils/ |
D | pinctrl_nrf_migrate.py | 123 def __init__(self, signal: str, pin: int) -> None: 124 self.signal = signal 151 def add_signal_config(self, signal: str, config: PIN_CONFIG) -> None: 154 if signal == pin.mapping.signal: 158 self.pins.append(PinConfiguration(SignalMapping(signal, -1), [config])) 160 def set_signal_pin(self, signal: str, pin: int) -> None: 163 if signal == pin_.mapping.signal: 167 self.pins.append(PinConfiguration(SignalMapping(signal, pin), []))
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | utils.py | 11 import signal 46 os.kill(child.pid, signal.SIGTERM)
|
/Zephyr-latest/lib/utils/ |
D | notify.c | 30 if (notify->method.signal == NULL) { in sys_notify_validate() 66 sig = notify->method.signal; in sys_notify_finalize()
|
/Zephyr-latest/drivers/virtualization/ |
D | virt_ivshmem_handlers.c | 47 struct k_poll_signal *signal, in z_vrfy_ivshmem_register_handler() argument 51 K_OOPS(K_SYSCALL_OBJ(signal, K_OBJ_POLL_SIGNAL)); in z_vrfy_ivshmem_register_handler() 53 return z_impl_ivshmem_register_handler(dev, signal, vector); in z_vrfy_ivshmem_register_handler()
|
/Zephyr-latest/drivers/smbus/ |
D | Kconfig | 73 bool "SMBus Intel PCH SMBALERT signal support" 76 Support SMBALERT signal from peripheral devices. 91 bool "SMBus STM32 SMBALERT signal support" 94 Support SMBALERT signal from peripheral devices.
|
/Zephyr-latest/drivers/wifi/nrf_wifi/src/ |
D | wifi_mgmt_scan.c | 357 if (r->signal.signal_type == NRF_WIFI_SIGNAL_TYPE_MBM) { in nrf_wifi_event_proc_disp_scan_res_zep() 358 int val = (r->signal.signal.mbm_signal); in nrf_wifi_event_proc_disp_scan_res_zep() 361 } else if (r->signal.signal_type == NRF_WIFI_SIGNAL_TYPE_UNSPEC) { in nrf_wifi_event_proc_disp_scan_res_zep() 362 res.rssi = (r->signal.signal.unspec_signal); in nrf_wifi_event_proc_disp_scan_res_zep() 388 signed short signal) in nrf_wifi_rx_bcn_prb_resp_frm() argument 395 int val = signal; in nrf_wifi_rx_bcn_prb_resp_frm()
|