Enum freertos_rs::TaskNotification [] [src]

pub enum TaskNotification {
    NoAction,
    SetBits(u32),
    Increment,
    OverwriteValue(u32),
    SetValue(u32),
}

Notification to be sent to a task.

Variants

Send the event, unblock the task, the task's notification value isn't changed.

Perform a logical or with the task's notification value.

Increment the task's notification value by one.

Set the task's notification value to this value.

Try to set the task's notification value to this value. Succeeds only if the task has no pending notifications. Otherwise, the notification call will fail.

Trait Implementations

impl Debug for TaskNotification
[src]

Formats the value using the given formatter.

impl Copy for TaskNotification
[src]

impl Clone for TaskNotification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more