|
| #define | ZBUS_CHAN_ADD_OBS_WITH_MASK(_chan, _obs, _masked, _prio) |
| | Add a static channel observation.
|
| |
| #define | ZBUS_CHAN_ADD_OBS(_chan, _obs, _prio) ZBUS_CHAN_ADD_OBS_WITH_MASK(_chan, _obs, false, _prio) |
| | Add a static channel observation.
|
| |
| #define | ZBUS_OBS_DECLARE(...) FOR_EACH_NONEMPTY_TERM(_ZBUS_OBS_EXTERN, (;), __VA_ARGS__) |
| | This macro list the observers to be used in a file.
|
| |
| #define | ZBUS_CHAN_DECLARE(...) FOR_EACH(_ZBUS_CHAN_EXTERN, (;), __VA_ARGS__) |
| | This macro list the channels to be used in a file.
|
| |
| #define | ZBUS_OBSERVERS_EMPTY |
| | This macro indicates the channel has no observers.
|
| |
| #define | ZBUS_OBSERVERS(...) __VA_ARGS__ |
| | This macro indicates the channel has listed observers.
|
| |
| #define | ZBUS_CHAN_DEFINE(_name, _type, _validator, _user_data, _observers, _init_val) |
| | Zbus channel definition.
|
| |
| #define | ZBUS_MSG_INIT(_val, ...) |
| | Initialize a message.
|
| |
| #define | ZBUS_SUBSCRIBER_DEFINE_WITH_ENABLE(_name, _queue_size, _enable) |
| | Define and initialize a subscriber.
|
| |
| #define | ZBUS_SUBSCRIBER_DEFINE(_name, _queue_size) ZBUS_SUBSCRIBER_DEFINE_WITH_ENABLE(_name, _queue_size, true) |
| | Define and initialize a subscriber.
|
| |
| #define | ZBUS_LISTENER_DEFINE_WITH_ENABLE(_name, _cb, _enable) |
| | Define and initialize a listener.
|
| |
| #define | ZBUS_LISTENER_DEFINE(_name, _cb) ZBUS_LISTENER_DEFINE_WITH_ENABLE(_name, _cb, true) |
| | Define and initialize a listener.
|
| |
| #define | ZBUS_MSG_SUBSCRIBER_DEFINE_WITH_ENABLE(_name, _enable) |
| | Define and initialize a message subscriber.
|
| |
| #define | ZBUS_MSG_SUBSCRIBER_DEFINE(_name) ZBUS_MSG_SUBSCRIBER_DEFINE_WITH_ENABLE(_name, true) |
| | Define and initialize an enabled message subscriber.
|
| |
|
| int | zbus_chan_pub (const struct zbus_channel *chan, const void *msg, k_timeout_t timeout) |
| | Publish to a channel.
|
| |
| int | zbus_chan_read (const struct zbus_channel *chan, void *msg, k_timeout_t timeout) |
| | Read a channel.
|
| |
| int | zbus_chan_claim (const struct zbus_channel *chan, k_timeout_t timeout) |
| | Claim a channel.
|
| |
| int | zbus_chan_finish (const struct zbus_channel *chan) |
| | Finish a channel claim.
|
| |
| int | zbus_chan_notify (const struct zbus_channel *chan, k_timeout_t timeout) |
| | Force a channel notification.
|
| |
| static const char * | zbus_chan_name (const struct zbus_channel *chan) |
| | Get the channel's name.
|
| |
| static void * | zbus_chan_msg (const struct zbus_channel *chan) |
| | Get the reference for a channel message directly.
|
| |
| static const void * | zbus_chan_const_msg (const struct zbus_channel *chan) |
| | Get a constant reference for a channel message directly.
|
| |
| static uint16_t | zbus_chan_msg_size (const struct zbus_channel *chan) |
| | Get the channel's message size.
|
| |
| static void * | zbus_chan_user_data (const struct zbus_channel *chan) |
| | Get the channel's user data.
|
| |
| static void | zbus_chan_set_msg_sub_pool (const struct zbus_channel *chan, struct net_buf_pool *pool) |
| | Set the channel's msg subscriber net_buf pool.
|
| |
| static void | zbus_chan_pub_stats_update (const struct zbus_channel *chan) |
| | Update the publishing statistics for a channel.
|
| |
| static k_ticks_t | zbus_chan_pub_stats_last_time (const struct zbus_channel *chan) |
| | Get the time a channel was last published to.
|
| |
| static uint32_t | zbus_chan_pub_stats_count (const struct zbus_channel *chan) |
| | Get the number of times a channel has been published to.
|
| |
| static uint32_t | zbus_chan_pub_stats_avg_period (const struct zbus_channel *chan) |
| | Get the average period between publishes to a channel.
|
| |
| int | zbus_chan_add_obs (const struct zbus_channel *chan, const struct zbus_observer *obs, k_timeout_t timeout) |
| | Add an observer to a channel.
|
| |
| int | zbus_chan_rm_obs (const struct zbus_channel *chan, const struct zbus_observer *obs, k_timeout_t timeout) |
| | Remove an observer from a channel.
|
| |
| int | zbus_obs_set_enable (const struct zbus_observer *obs, bool enabled) |
| | Change the observer state.
|
| |
| static int | zbus_obs_is_enabled (const struct zbus_observer *obs, bool *enable) |
| | Get the observer state.
|
| |
| int | zbus_obs_set_chan_notification_mask (const struct zbus_observer *obs, const struct zbus_channel *chan, bool masked) |
| | Mask notifications from a channel to an observer.
|
| |
| int | zbus_obs_is_chan_notification_masked (const struct zbus_observer *obs, const struct zbus_channel *chan, bool *masked) |
| | Get the notifications masking state from a channel to an observer.
|
| |
| static const char * | zbus_obs_name (const struct zbus_observer *obs) |
| | Get the observer's name.
|
| |
| int | zbus_obs_attach_to_thread (const struct zbus_observer *obs) |
| | Set the observer thread priority by attaching it to a thread.
|
| |
| int | zbus_obs_detach_from_thread (const struct zbus_observer *obs) |
| | Clear the observer thread priority by detaching it from a thread.
|
| |
| int | zbus_sub_wait (const struct zbus_observer *sub, const struct zbus_channel **chan, k_timeout_t timeout) |
| | Wait for a channel notification.
|
| |
| int | zbus_sub_wait_msg (const struct zbus_observer *sub, const struct zbus_channel **chan, void *msg, k_timeout_t timeout) |
| | Wait for a channel message.
|
| |
| bool | zbus_iterate_over_channels (bool(*iterator_func)(const struct zbus_channel *chan)) |
| | Iterate over channels.
|
| |
| bool | zbus_iterate_over_channels_with_user_data (bool(*iterator_func)(const struct zbus_channel *chan, void *user_data), void *user_data) |
| | Iterate over channels with user data.
|
| |
| bool | zbus_iterate_over_observers (bool(*iterator_func)(const struct zbus_observer *obs)) |
| | Iterate over observers.
|
| |
| bool | zbus_iterate_over_observers_with_user_data (bool(*iterator_func)(const struct zbus_observer *obs, void *user_data), void *user_data) |
| | Iterate over observers with user data.
|
| |