systemview-target 0.3.0

RTOS tracing trait implementation for SEGGER SystemView.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
macro_rules! _stub_callbacks_app {
    () => {
        #[no_mangle]
        pub unsafe extern "C" fn _rtos_trace_system_description() {}
        #[no_mangle]
        pub unsafe extern "C" fn _rtos_trace_sysclock() -> u64 {
            0
        }
    };
}

#[cfg(not(feature = "callbacks-app"))]
_stub_callbacks_app! {}