Home
last modified time | relevance | path

Searched refs:work (Results 226 – 250 of 991) sorted by relevance

12345678910>>...40

/Zephyr-latest/samples/sensor/sht3xd/
DREADME.rst33 sensor. It should work with any platform featuring a I2C peripheral
34 interface. It does not work on QEMU. In this example below the
/Zephyr-latest/tests/subsys/zbus/runtime_observers_registration/src/
Dmain.c138 struct k_work work; member
153 k_work_init(&wq_handler.work, wq_dh_cb); in ZTEST()
154 k_work_submit(&wq_handler.work); in ZTEST()
/Zephyr-latest/boards/openisa/rv32m1_vega/support/
Dopenocd_rv32m1_vega_ri5cy.cfg41 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
/Zephyr-latest/samples/boards/nordic/mesh/onoff_level_lighting_vnd_app/src/mesh/
Dtransition.c153 static void onoff_work_handler(struct k_work *work) in onoff_work_handler() argument
210 static void level_lightness_work_handler(struct k_work *work) in level_lightness_work_handler() argument
272 static void level_temp_work_handler(struct k_work *work) in level_temp_work_handler() argument
303 static void light_lightness_actual_work_handler(struct k_work *work) in light_lightness_actual_work_handler() argument
329 static void light_lightness_linear_work_handler(struct k_work *work) in light_lightness_linear_work_handler() argument
355 static void light_ctl_work_handler(struct k_work *work) in light_ctl_work_handler() argument
388 static void light_ctl_temp_work_handler(struct k_work *work) in light_ctl_temp_work_handler() argument
/Zephyr-latest/boards/nxp/frdm_rw612/
DCMakeLists.txt10 # This FCB is specific to the flash on this board, it won't work
/Zephyr-latest/drivers/usb/uhc/
Duhc_virtual.c33 struct k_work work; member
74 k_work_submit(&priv->work); in vrt_event_submit()
311 static void xfer_work_handler(struct k_work *work) in xfer_work_handler() argument
313 struct uhc_vrt_data *priv = CONTAINER_OF(work, struct uhc_vrt_data, work); in xfer_work_handler()
503 k_work_init(&priv->work, xfer_work_handler); in uhc_vrt_driver_preinit()
/Zephyr-latest/drivers/input/
Dinput_xpt2046.c31 struct k_work work; member
82 k_work_submit(&data->work); in xpt2046_isr_handler()
126 struct xpt2046_data *data = CONTAINER_OF(kw, struct xpt2046_data, work); in xpt2046_work_handler()
204 k_work_init(&data->work, xpt2046_work_handler); in xpt2046_init()
/Zephyr-latest/drivers/ethernet/
Deth_nxp_imx_netc.c90 int work; in netc_eth_rx_thread() local
102 work = 0; in netc_eth_rx_thread()
104 if (++work == CONFIG_ETH_NXP_IMX_RX_BUDGET) { in netc_eth_rx_thread()
106 work = 0; in netc_eth_rx_thread()
Deth_nxp_s32_netc.c244 int work; in nxp_s32_eth_rx_thread() local
255 work = 0; in nxp_s32_eth_rx_thread()
257 if (++work == CONFIG_ETH_NXP_S32_RX_BUDGET) { in nxp_s32_eth_rx_thread()
259 work = 0; in nxp_s32_eth_rx_thread()
DKconfig.nxp_s32_netc34 The budget parameter places a limit on the amount of work the driver may
36 work to do. This is to prevent the RX thread to starve other threads. Each
37 received frame counts as one unit of work.
/Zephyr-latest/drivers/sensor/honeywell/hmc5883l/
Dhmc5883l.h63 struct k_work work; member
/Zephyr-latest/drivers/sensor/st/lis2mdl/
Dlis2mdl.h66 struct k_work work; member
/Zephyr-latest/drivers/sensor/ti/ina23x/
Dina230.h45 struct k_work work; member
/Zephyr-latest/boards/qemu/cortex_a53/
Dqemu_cortex_a53_qemu_cortex_a53_smp_defconfig16 # icount does not work well with SMP
/Zephyr-latest/modules/hal_nordic/nrf_802154/sl_opensource/platform/
Dnrf_802154_temperature_zephyr.c37 static void work_handler(struct k_work *work) in work_handler() argument
/Zephyr-latest/include/zephyr/drivers/i3c/
Dibi.h95 struct k_work work; member
/Zephyr-latest/doc/services/pm/
Dpower_domain.rst23 work flow is illustrated in the diagram below.
25 .. _pm-domain-work-flow:
28 :caption: Power domain work flow
79 :ref:`pm-domain-work-flow` as example, the following code defines a
145 callback and can be used by them to do any additional work required.
/Zephyr-latest/drivers/wifi/esp_at/
Desp.c156 static void esp_mode_switch_work(struct k_work *work) in esp_mode_switch_work() argument
159 CONTAINER_OF(work, struct esp_data, mode_switch_work); in esp_mode_switch_work()
486 static void esp_dns_work(struct k_work *work) in esp_dns_work() argument
489 struct esp_data *data = CONTAINER_OF(work, struct esp_data, dns_work); in esp_dns_work()
578 static void esp_mgmt_disconnect_work(struct k_work *work) in esp_mgmt_disconnect_work() argument
583 dev = CONTAINER_OF(work, struct esp_data, disconnect_work); in esp_mgmt_disconnect_work()
644 static void esp_ip_addr_work(struct k_work *work) in esp_ip_addr_work() argument
646 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in esp_ip_addr_work()
1017 static void esp_mgmt_iface_status_work(struct k_work *work) in esp_mgmt_iface_status_work() argument
1019 struct esp_data *data = CONTAINER_OF(work, struct esp_data, iface_status_work); in esp_mgmt_iface_status_work()
[all …]
/Zephyr-latest/drivers/serial/
Duart_ite_it8xxx2.c118 static void uart_it8xxx2_rx_refresh_timeout(struct k_work *work) in uart_it8xxx2_rx_refresh_timeout() argument
120 ARG_UNUSED(work); in uart_it8xxx2_rx_refresh_timeout()
/Zephyr-latest/samples/subsys/lorawan/fuota/
DREADME.rst19 work queue thread. After a firmware upgrade is successfully received, the application is notified
22 A LoRaWAN Application Server implementing the relevant services is required for this sample to work.
/Zephyr-latest/tests/subsys/sd/mmc/
DREADME.txt19 * Read test: verify that single block reads work, followed by multiple
23 * Write test: verify that single block writes work, followed by multiple
/Zephyr-latest/tests/subsys/sd/sdmmc/
DREADME.txt19 * Read test: verify that single block reads work, followed by multiple
23 * Write test: verify that single block writes work, followed by multiple
/Zephyr-latest/drivers/sensor/st/lis2ds12/
Dlis2ds12.h69 struct k_work work; member
/Zephyr-latest/doc/develop/application/
Dapplication-kconfig.include9 # Note: All 'source' statements work relative to the Zephyr root directory (due
/Zephyr-latest/drivers/rtc/
Drtc_rv3028.c160 struct k_work work; member
381 static void rv3028_work_cb(struct k_work *work) in rv3028_work_cb() argument
383 struct rv3028_data *data = CONTAINER_OF(work, struct rv3028_data, work); in rv3028_work_cb()
429 k_work_submit(&data->work); in rv3028_work_cb()
454 k_work_submit(&data->work); in rv3028_int_handler()
721 k_work_submit(&data->work); in rv3028_alarm_set_callback()
757 k_work_submit(&data->work); in rv3028_update_set_callback()
815 data->work.handler = rv3028_work_cb; in rv3028_init()

12345678910>>...40