Lines Matching full:work
1 .. zephyr:code-sample:: zbus-work-queue
2 :name: Work queue
5 Use a work queue to process zbus messages in various ways.
9 …ng a listener callback. It can schedule a job, pushing that to the system work queue. Last, it can…
31 I: Sensor msg processed by WORK QUEUE handler dh1: temp = 10, press = 1, humidity = 100
32 I: Sensor msg processed by WORK QUEUE handler dh2: temp = 10, press = 1, humidity = 100
33 I: Sensor msg processed by WORK QUEUE handler dh3: temp = 10, press = 1, humidity = 100
40 I: Sensor msg processed by WORK QUEUE handler dh1: temp = 20, press = 2, humidity = 200
41 I: Sensor msg processed by WORK QUEUE handler dh2: temp = 20, press = 2, humidity = 200
42 I: Sensor msg processed by WORK QUEUE handler dh3: temp = 20, press = 2, humidity = 200
49 I: Sensor msg processed by WORK QUEUE handler dh1: temp = 30, press = 3, humidity = 300
50 I: Sensor msg processed by WORK QUEUE handler dh2: temp = 30, press = 3, humidity = 300
51 I: Sensor msg processed by WORK QUEUE handler dh3: temp = 30, press = 3, humidity = 300