EventGroupHandle

Type Alias EventGroupHandle 

Source
pub type EventGroupHandle = *const c_void;
Expand description

FreeRTOS opaque handle types for OS primitives. These handles are used to reference FreeRTOS objects.

§Examples

use osal_rs::os::types::*;
 
// ThreadHandle is used internally by Thread struct
let handle: ThreadHandle = std::ptr::null_mut();

Opaque handle to a FreeRTOS event group