Home
last modified time | relevance | path

Searched refs:observation (Results 1 – 16 of 16) sorted by relevance

/Zephyr-latest/subsys/zbus/
Dzbus.c61 STRUCT_SECTION_FOREACH(zbus_channel_observation, observation) { in _zbus_init()
62 curr = observation->chan; in _zbus_init()
164 struct zbus_channel_observation *observation; in _zbus_vded_exec() local
188 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in _zbus_vded_exec()
191 _ZBUS_ASSERT(observation != NULL, "observation must be not NULL"); in _zbus_vded_exec()
193 const struct zbus_observer *obs = observation->obs; in _zbus_vded_exec()
244 struct zbus_channel_observation *observation; in chan_update_hop() local
253 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in chan_update_hop()
256 __ASSERT(observation != NULL, "observation must be not NULL"); in chan_update_hop()
258 const struct zbus_observer *obs = observation->obs; in chan_update_hop()
[all …]
Dzbus_runtime_observers.c16 struct zbus_channel_observation *observation; in zbus_chan_add_obs() local
29 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in zbus_chan_add_obs()
31 __ASSERT(observation != NULL, "observation must be not NULL"); in zbus_chan_add_obs()
33 if (observation->obs == obs) { in zbus_chan_add_obs()
/Zephyr-latest/samples/subsys/zbus/hello_world/src/
Dmain.c105 struct zbus_channel_observation *observation; in print_channel_data_iterator() local
109 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation); in print_channel_data_iterator()
111 __ASSERT(observation != NULL, "observation must be not NULL"); in print_channel_data_iterator()
113 LOG_INF(" - %s", observation->obs->name); in print_channel_data_iterator()
/Zephyr-latest/drivers/sensor/pixart/paa3905/
Dpaa3905.h29 uint8_t observation; member
Dpaa3905_decoder.c50 switch (REG_OBSERVATION_MODE(edata->observation)) { in is_data_valid()
72 (uint8_t)REG_OBSERVATION_MODE(edata->observation), edata->squal, shutter); in is_data_valid()
Dpaa3905_stream.c78 if (!REG_OBSERVATION_CHIP_OK(edata->observation)) { in paa3905_complete_result()
/Zephyr-latest/drivers/spi/
DKconfig.ambiq65 configurable BLEIF timing observation functions on other exposed
/Zephyr-latest/doc/services/zbus/
Dindex.rst79 Channel observation structures define the relationship between a channel and its observers. For
80 every observation, a pair channel/observer. Developers can statically allocate observation using the
86 :alt: ZBus observation mask.
89 ZBus observation mask.
93 allocated (runtime observation). (a) shows that the observer and all observations are enabled. (b)
95 enabled. However, there is one static observation disabled. The event dispatcher will only stop
358 will be considered on the channel HOP calculation. Masking a specific observation of a channel will
691 struct zbus_channel_observation *observation;
695 STRUCT_SECTION_GET(zbus_channel_observation, i, &observation);
697 LOG_INF(" - %s", observation->obs->name);
/Zephyr-latest/subsys/net/lib/lwm2m/
DKconfig.ipso263 been operated since the last observation.
/Zephyr-latest/doc/kernel/
Dtimeutil.rst99 recently received second observation, and a skew that can adjust for
/Zephyr-latest/doc/releases/
Drelease-notes-3.5.rst852 * Fixed a possible notification stall in case of observation token change.
2174 observation. The observation enables us to increase the granularity of masking observation.
2179 the system using ZBus, making post-definition channel observation rely on the stack instead of
Drelease-notes-1.13.rst557 * :github:`8287` - LwM2M: Cancelling an observation doesn't work
Drelease-notes-2.7.rst1143 * :github:`38534` - lwm2m: add api to inspect observation state of resource/object
Drelease-notes-3.2.rst827 LwM2M observation, LwM2M message handling.
Drelease-notes-3.3.rst1088 * Fixed a bug causing incorrect ordering of the observation paths.
/Zephyr-latest/doc/connectivity/networking/api/
Dlwm2m.rst674 …`lwm2m_send_cb` or by writing into one of the observed resources where observation would trigger a…