pub trait RtosTraceApplicationCallbacks {
    fn system_description();
    fn sysclock() -> u32;
}
Expand description

Callbacks to the application invoked by the tracing system. This trait can be implemented by user.

Required Methods

Send a system and application description to the tracing system.

Get system clock in Hertz.

Implementors