/Zephyr-latest/tests/drivers/audio/dmic_api/ |
D | README.txt | 9 * Verify the DMIC can sample from one left channel 18 * Verify that invalid channel maps (R/R pair, non-adjacent channels) are
|
/Zephyr-latest/drivers/pwm/ |
D | pwm_cc13xx_cc26xx_timer.c | 98 static int set_cycles(const struct device *dev, uint32_t channel, uint32_t period, uint32_t pulse, in set_cycles() argument 103 if (channel != 0) { in set_cycles() 118 static int get_cycles_per_sec(const struct device *dev, uint32_t channel, uint64_t *cycles) in get_cycles_per_sec() argument 120 if (channel > 0) { in get_cycles_per_sec()
|
D | pwm_npcx.c | 81 static int pwm_npcx_set_cycles(const struct device *dev, uint32_t channel, in pwm_npcx_set_cycles() argument 86 ARG_UNUSED(channel); in pwm_npcx_set_cycles() 155 uint32_t channel, uint64_t *cycles) in pwm_npcx_get_cycles_per_sec() argument 158 ARG_UNUSED(channel); in pwm_npcx_get_cycles_per_sec()
|
/Zephyr-latest/boards/innblue/innblue21/ |
D | innblue21_common.dtsi | 23 label = "RGB red channel"; 27 label = "RGB green channel"; 31 label = "RGB blue channel"; 36 label = "mode red channel";
|
/Zephyr-latest/boards/innblue/innblue22/ |
D | innblue22_common.dtsi | 23 label = "RGB red channel"; 27 label = "RGB green channel"; 31 label = "RGB blue channel"; 36 label = "mode red channel";
|
/Zephyr-latest/samples/drivers/i2s/i2s_codec/src/ |
D | main.c | 89 .channel = { in main() 126 cfg.channel.req_num_chan = 2; in main() 127 cfg.channel.req_chan_map_lo = in main() 134 cfg.streams[0].pcm_rate, cfg.channel.req_num_chan); in main()
|
/Zephyr-latest/drivers/serial/ |
D | uart_renesas_ra8_sci_b.c | 998 #define _ELC_EVENT_SCI_RXI(channel) ELC_EVENT_SCI##channel##_RXI argument 999 #define _ELC_EVENT_SCI_TXI(channel) ELC_EVENT_SCI##channel##_TXI argument 1000 #define _ELC_EVENT_SCI_TEI(channel) ELC_EVENT_SCI##channel##_TEI argument 1001 #define _ELC_EVENT_SCI_ERI(channel) ELC_EVENT_SCI##channel##_ERI argument 1003 #define ELC_EVENT_SCI_RXI(channel) _ELC_EVENT_SCI_RXI(channel) argument 1004 #define ELC_EVENT_SCI_TXI(channel) _ELC_EVENT_SCI_TXI(channel) argument 1005 #define ELC_EVENT_SCI_TEI(channel) _ELC_EVENT_SCI_TEI(channel) argument 1006 #define ELC_EVENT_SCI_ERI(channel) _ELC_EVENT_SCI_ERI(channel) argument 1013 ELC_EVENT_SCI_RXI(DT_INST_PROP(index, channel)); \ 1015 ELC_EVENT_SCI_TXI(DT_INST_PROP(index, channel)); \ [all …]
|
/Zephyr-latest/subsys/mgmt/osdp/src/ |
D | osdp.c | 129 static struct osdp *osdp_build_ctx(struct osdp_channel *channel) in osdp_build_ctx() argument 158 memcpy(&pd->channel, channel, sizeof(struct osdp_channel)); in osdp_build_ctx() 185 struct osdp_channel channel = { in osdp_init() local 228 ctx = osdp_build_ctx(&channel); in osdp_init()
|
/Zephyr-latest/tests/drivers/build_all/sensor/ |
D | app.overlay | 21 #io-channel-cells = <1>; 26 channel@0 { 35 channel@1 { 44 channel@2 { 60 #io-channel-cells = <1>;
|
/Zephyr-latest/samples/bluetooth/mesh_demo/boards/ |
D | bbc_microbit.overlay | 3 channel-gpios = <&edge_connector 0 GPIO_ACTIVE_HIGH>;
|
/Zephyr-latest/dts/arm/renesas/ra/ra6/ |
D | r7fa6e10x.dtsi | 49 channel = <1>; 63 channel = <2>; 77 channel = <3>; 91 channel = <4>; 97 channel-count = <11>; 98 channel-available-mask = <0x31ff>; 104 channel = <RA_PWM_CHANNEL_6>; 114 channel = <RA_PWM_CHANNEL_7>;
|
/Zephyr-latest/drivers/spi/ |
D | spi_mcux_flexcomm.c | 54 uint32_t channel; /* stores the channel for dma */ member 303 uint32_t channel, int status) in spi_mcux_dma_callback() argument 310 LOG_ERR("DMA callback error with channel %d.", channel); in spi_mcux_dma_callback() 314 if (channel == data->dma_tx.channel) { in spi_mcux_dma_callback() 320 } else if (channel == data->dma_rx.channel) { in spi_mcux_dma_callback() 325 channel); in spi_mcux_dma_callback() 481 ret = dma_config(data->dma_tx.dma_dev, data->dma_tx.channel, in spi_mcux_dma_tx_load() 508 return dma_start(data->dma_tx.dma_dev, data->dma_tx.channel); in spi_mcux_dma_tx_load() 546 ret = dma_config(data->dma_rx.dma_dev, data->dma_rx.channel, in spi_mcux_dma_rx_load() 554 return dma_start(data->dma_rx.dma_dev, data->dma_rx.channel); in spi_mcux_dma_rx_load() [all …]
|
/Zephyr-latest/drivers/wifi/esp32/src/ |
D | esp_wifi_drv.c | 62 uint8_t channel; member 244 res.channel = ap_list_buffer[k].primary; in scan_done_handler() 571 if (params->channel == WIFI_CHANNEL_ANY) { in esp32_wifi_connect() 572 wifi_config.sta.channel = 0U; in esp32_wifi_connect() 573 data->status.channel = 0U; in esp32_wifi_connect() 575 wifi_config.sta.channel = params->channel; in esp32_wifi_connect() 576 data->status.channel = params->channel; in esp32_wifi_connect() 657 .channel = params->channel == WIFI_CHANNEL_ANY ? in esp32_wifi_ap_enable() 658 0 : params->channel, in esp32_wifi_ap_enable() 779 status->channel = ap_info.primary; in esp32_wifi_status() [all …]
|
/Zephyr-latest/samples/drivers/dac/boards/ |
D | arduino_giga_r1_stm32h747xx_m7.overlay | 4 dac-channel-id = <1>;
|
D | arduino_zero.overlay | 4 dac-channel-id = <0>;
|
D | b_u585i_iot02a.overlay | 4 dac-channel-id = <1>;
|
D | bl5340_dvk_nrf5340_cpuapp.overlay | 4 dac-channel-id = <0>;
|
D | disco_l475_iot1.overlay | 4 dac-channel-id = <1>;
|
D | frdm_k22f.overlay | 4 dac-channel-id = <0>;
|
D | nucleo_f091rc.overlay | 4 dac-channel-id = <1>;
|
D | nucleo_f429zi.overlay | 4 dac-channel-id = <1>;
|
D | nucleo_f746zg.overlay | 4 dac-channel-id = <1>;
|
D | nucleo_f767zi.overlay | 4 dac-channel-id = <1>;
|
D | nucleo_g071rb.overlay | 4 dac-channel-id = <1>;
|
D | nucleo_g431rb.overlay | 4 dac-channel-id = <1>;
|