/Zephyr-latest/subsys/usb/device_next/ |
D | usbd_endpoint.c | 20 int usbd_ep_enable(const struct device *dev, in usbd_ep_enable() 35 int usbd_ep_disable(const struct device *dev, in usbd_ep_disable()
|
/Zephyr-latest/doc/build/dts/ |
D | bindings-syntax.rst | 22 # A high level description of the device the binding applies to: 24 This is the Vendomatic company's foo-device. 35 compatible: "manufacturer,foo-device" 49 # If the node instead appears as a device on a bus, like an external 79 # Note the comma-separated vendor prefix and device name 80 compatible: "manufacturer,device" 86 device { 87 compatible = "manufacturer,device"; 90 Assuming no binding has ``compatible: "manufacturer,device-v2"``, it would also 95 device-2 { [all …]
|
/Zephyr-latest/samples/bluetooth/hci_uart/ |
D | README.rst | 5 Expose a Bluetooth controller to another device or CPU over UART. 10 Expose Bluetooth controller support over UART to another device/CPU 36 The instructions below show how to use a Nordic nRF5x device as a Zephyr BLE 72 ``/dev/ttyACM0`` string to point to the serial device your controller is 105 ``/dev/ttyACM0`` string to point to the serial device your controller is 161 block) is used to select which uart device to use. For example if we want to
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | hci_spi_st.c | 173 static void bt_spi_isr(const struct device *unused1, in bt_spi_isr() 358 static int bt_spi_bluenrg_setup(const struct device *dev, in bt_spi_bluenrg_setup() 504 const struct device *dev = p1; in bt_spi_rx_thread() 556 static int bt_spi_send(const struct device *dev, struct net_buf *buf) in bt_spi_send() 642 static int bt_spi_open(const struct device *dev, bt_hci_recv_t recv) in bt_spi_open() 704 static int bt_spi_init(const struct device *dev) in bt_spi_init()
|
/Zephyr-latest/drivers/clock_control/ |
D | clock_control_esp32.c | 489 static enum clock_control_status clock_control_esp32_get_status(const struct device *dev, in clock_control_esp32_get_status() 502 static int clock_control_esp32_on(const struct device *dev, clock_control_subsys_t sys) in clock_control_esp32_on() 515 static int clock_control_esp32_off(const struct device *dev, clock_control_subsys_t sys) in clock_control_esp32_off() 526 static int clock_control_esp32_get_rate(const struct device *dev, clock_control_subsys_t sys, in clock_control_esp32_get_rate() 719 static int clock_control_esp32_configure(const struct device *dev, clock_control_subsys_t sys, in clock_control_esp32_configure() 749 static int clock_control_esp32_init(const struct device *dev) in clock_control_esp32_init()
|
D | clock_stm32_ll_u5.c | 153 static inline int stm32_clock_control_on(const struct device *dev, in stm32_clock_control_on() 175 static inline int stm32_clock_control_off(const struct device *dev, in stm32_clock_control_off() 193 static inline int stm32_clock_control_configure(const struct device *dev, in stm32_clock_control_configure() 217 static int stm32_clock_control_get_subsys_rate(const struct device *dev, in stm32_clock_control_get_subsys_rate() 367 static enum clock_control_status stm32_clock_control_get_status(const struct device *dev, in stm32_clock_control_get_status() 844 int stm32_clock_control_init(const struct device *dev) in stm32_clock_control_init()
|
/Zephyr-latest/drivers/net/ |
D | ppp.c | 74 const struct device *dev; 134 static void uart_callback(const struct device *dev, in uart_callback() 804 static int ppp_send(const struct device *dev, struct net_pkt *pkt) in ppp_send() 950 static int ppp_driver_init(const struct device *dev) in ppp_driver_init() 1055 static struct net_stats_ppp *ppp_get_stats(const struct device *dev) in ppp_get_stats() 1064 static void ppp_uart_flush(const struct device *dev) in ppp_uart_flush() 1073 static void ppp_uart_isr(const struct device *uart, void *user_data) in ppp_uart_isr() 1098 static int ppp_start(const struct device *dev) in ppp_start() 1131 static int ppp_stop(const struct device *dev) in ppp_stop()
|
/Zephyr-latest/drivers/crypto/ |
D | crypto_si32.c | 69 static void crypto_si32_dma_completed(const struct device *dev, void *user_data, uint32_t channel, in crypto_si32_dma_completed() 94 static int crypto_si32_query_hw_caps(const struct device *dev) in crypto_si32_query_hw_caps() 102 static void crypto_si32_irq_error_handler(const struct device *dev) in crypto_si32_irq_error_handler() 118 static int crypto_si32_init(const struct device *dev) in crypto_si32_init() 326 const struct device *dma = DEVICE_DT_GET(DT_NODELABEL(dma)); in crypto_si32_dma_setup_tx() 401 const struct device *dma = DEVICE_DT_GET(DT_NODELABEL(dma)); in crypto_si32_dma_setup_rx() 491 const struct device *dma = DEVICE_DT_GET(DT_NODELABEL(dma)); in crypto_si32_dma_setup_xor() 1049 static int crypto_si32_begin_session(const struct device *dev, struct cipher_ctx *ctx, in crypto_si32_begin_session() 1178 static int crypto_si32_free_session(const struct device *dev, struct cipher_ctx *ctx) in crypto_si32_free_session()
|
/Zephyr-latest/drivers/display/ |
D | display_rm68200.c | 79 const struct device *mipi_dsi; 89 static int rm68200_dcs_write(const struct device *dev, uint8_t cmd, uint8_t *buf, in rm68200_dcs_write() 97 static int rm68200_write(const struct device *dev, const uint16_t x, in rm68200_write() 105 static int rm68200_blanking_off(const struct device *dev) in rm68200_blanking_off() 116 static int rm68200_blanking_on(const struct device *dev) in rm68200_blanking_on() 127 static int rm68200_set_pixel_format(const struct device *dev, in rm68200_set_pixel_format() 139 static int rm68200_set_orientation(const struct device *dev, in rm68200_set_orientation() 149 static void rm68200_get_capabilities(const struct device *dev, in rm68200_get_capabilities() 171 static int rm68200_init(const struct device *dev) in rm68200_init()
|
/Zephyr-latest/doc/develop/test/ |
D | pytest.rst | 42 a subprocess. Required parameters (such as build directory, device to be used, etc.) are passed 110 the core of pytest harness plugin. It is required to launch DUT (initialize logging, flash device, 111 connect serial etc). This fixture yields a device prepared according to the requested type 113 writing tests which are device-type-agnostic. Scope of this fixture is determined by the 163 # obtain the hash of uploaded image from the device 167 # reset the device remotely 175 Similar to the ``dut`` fixture, but it does not initialize the device. It can be used when a finer 177 device. 283 How to get information about used device type in test?
|
/Zephyr-latest/samples/tfm_integration/psa_crypto/ |
D | README.rst | 4 Use the PSA Crypto API for cryptography and device certificate signing requests. 9 Zephyr for cryptography and device certificate signing request. In addition, 12 as secure storage for config data, initial attestation for device 43 Also demonstrates device certificate signing request (CSR) workflow: 46 - Set subject name in device CSR 47 - Generate device CSR in PEM format 48 - Encode device CSR as JSON 119 ``<MPS2 device name>/SOFTWARE/``. 121 3. Edit (e.g., with vim) the ``<MPS2 device name>/MB/HBI0263C/AN521/images.txt`` 189 JLinkExe -device lpc55s69 -if swd -speed 2000 -autoconnect 1 [all …]
|
/Zephyr-latest/drivers/spi/ |
D | Kconfig.gd32 | 27 that enable dma channels in their device tree node.
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.mec5 | 12 This module implements a kernel timer device driver for the
|
/Zephyr-latest/drivers/sensor/ist8310/ |
D | ist8310.h | 96 int ist8310_reg_update_byte(const struct device *dev, uint8_t reg,
|
/Zephyr-latest/drivers/wifi/infineon/ |
D | airoc_wifi.h | 67 const struct device *bus_sdio;
|
/Zephyr-latest/drivers/wifi/winc1500/ |
D | wifi_winc1500_nm_bsp.c | 27 static inline void chip_isr(const struct device *port, in chip_isr()
|
/Zephyr-latest/drivers/input/ |
D | Kconfig.cst816s | 31 Enable device specific event support.
|
/Zephyr-latest/drivers/gpio/ |
D | Kconfig.mmio32 | 12 driving an LED, or chip-select line for an SPI device.
|
/Zephyr-latest/drivers/usb/device/ |
D | usb_dc_dw_stm32.h | 17 const struct device *const dev;
|
/Zephyr-latest/drivers/dai/intel/alh/ |
D | Kconfig.alh | 13 The ALH is an intermediary device, which acts as a hub and provides an
|
/Zephyr-latest/samples/modules/lvgl/demos/src/ |
D | main.c | 20 const struct device *display_dev; in main()
|
/Zephyr-latest/tests/drivers/spi/spi_controller_peripheral/boards/ |
D | ek_ra8m1.overlay | 43 compatible = "vnd,spi-device";
|
/Zephyr-latest/boards/m5stack/m5stack_core2/ |
D | Kconfig.defconfig | 35 # Increase initialization priority of MIPI DBI device, so that it initializes
|
/Zephyr-latest/samples/bluetooth/central_gatt_write/ |
D | README.rst | 5 Scan for a Bluetooth LE device, connect to it and write a value to a characteristic.
|
/Zephyr-latest/samples/drivers/led/lp5569/src/ |
D | main.c | 20 const struct device *const led_dev = DEVICE_DT_GET_ANY(ti_lp5569); in main()
|