#![allow(unused_variables)]
use crate::kernel::list::{ListItem_t, List_t};
use crate::types::*;
#[inline(always)]
pub fn traceENTER_vListInitialise(pxList: *mut List_t) {}
#[inline(always)]
pub fn traceRETURN_vListInitialise() {}
#[inline(always)]
pub fn traceENTER_vListInitialiseItem(pxItem: *mut ListItem_t) {}
#[inline(always)]
pub fn traceRETURN_vListInitialiseItem() {}
#[inline(always)]
pub fn traceENTER_vListInsertEnd(pxList: *mut List_t, pxNewListItem: *mut ListItem_t) {}
#[inline(always)]
pub fn traceRETURN_vListInsertEnd() {}
#[inline(always)]
pub fn traceENTER_vListInsert(pxList: *mut List_t, pxNewListItem: *mut ListItem_t) {}
#[inline(always)]
pub fn traceRETURN_vListInsert() {}
#[inline(always)]
pub fn traceENTER_uxListRemove(pxItemToRemove: *mut ListItem_t) {}
#[inline(always)]
pub fn traceRETURN_uxListRemove(uxNumberOfItems: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_CREATE(pxNewTCB: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTASK_CREATE_FAILED() {}
#[inline(always)]
pub fn traceTASK_DELETE(pxTaskToDelete: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTASK_DELAY_UNTIL(xTimeToWake: TickType_t) {}
#[inline(always)]
pub fn traceTASK_DELAY() {}
#[inline(always)]
pub fn traceTASK_PRIORITY_SET(pxTask: *mut core::ffi::c_void, uxNewPriority: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_SUSPEND(pxTaskToSuspend: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTASK_RESUME(pxTaskToResume: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTASK_RESUME_FROM_ISR(pxTaskToResume: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTASK_INCREMENT_TICK(xTickCount: TickType_t) {}
#[inline(always)]
pub fn traceTASK_SWITCHED_IN() {}
#[inline(always)]
pub fn traceTASK_SWITCHED_OUT() {}
#[inline(always)]
pub fn traceTASK_PRIORITY_INHERIT(
pxTCBOfMutexHolder: *mut core::ffi::c_void,
uxInheritedPriority: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceTASK_PRIORITY_DISINHERIT(
pxTCBOfMutexHolder: *mut core::ffi::c_void,
uxOriginalPriority: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceTASK_NOTIFY_TAKE_BLOCK(uxIndexToWait: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_NOTIFY_TAKE(uxIndexToWait: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_NOTIFY_WAIT_BLOCK(uxIndexToWait: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_NOTIFY_WAIT(uxIndexToWait: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_NOTIFY(uxIndexToNotify: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_NOTIFY_FROM_ISR(uxIndexToNotify: UBaseType_t) {}
#[inline(always)]
pub fn traceTASK_NOTIFY_GIVE_FROM_ISR(uxIndexToNotify: UBaseType_t) {}
#[inline(always)]
pub fn traceQUEUE_CREATE(pxNewQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_CREATE_FAILED(ucQueueType: u8) {}
#[inline(always)]
pub fn traceCREATE_MUTEX(pxNewQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceCREATE_MUTEX_FAILED() {}
#[inline(always)]
pub fn traceGIVE_MUTEX_RECURSIVE(pxMutex: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceGIVE_MUTEX_RECURSIVE_FAILED(pxMutex: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTAKE_MUTEX_RECURSIVE(pxMutex: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTAKE_MUTEX_RECURSIVE_FAILED(pxMutex: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceCREATE_COUNTING_SEMAPHORE() {}
#[inline(always)]
pub fn traceCREATE_COUNTING_SEMAPHORE_FAILED() {}
#[inline(always)]
pub fn traceQUEUE_SEND(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_SEND_FAILED(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_RECEIVE(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_PEEK(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_PEEK_FAILED(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_PEEK_FROM_ISR(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_RECEIVE_FAILED(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_SEND_FROM_ISR(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_SEND_FROM_ISR_FAILED(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_RECEIVE_FROM_ISR(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_RECEIVE_FROM_ISR_FAILED(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_PEEK_FROM_ISR_FAILED(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_DELETE(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceBLOCKING_ON_QUEUE_RECEIVE(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceBLOCKING_ON_QUEUE_PEEK(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceBLOCKING_ON_QUEUE_SEND(pxQueue: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceQUEUE_REGISTRY_ADD(pxQueue: *mut core::ffi::c_void, pcQueueName: *const u8) {}
#[inline(always)]
pub fn traceTIMER_CREATE(pxNewTimer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTIMER_CREATE_FAILED() {}
#[inline(always)]
pub fn traceTIMER_COMMAND_SEND(
xTimer: *mut core::ffi::c_void,
xMessageID: BaseType_t,
xMessageValueValue: TickType_t,
xReturn: BaseType_t,
) {
}
#[inline(always)]
pub fn traceTIMER_EXPIRED(pxTimer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceTIMER_COMMAND_RECEIVED(
pxTimer: *mut core::ffi::c_void,
xMessageID: BaseType_t,
xMessageValue: TickType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_CREATE(pxEventGroup: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceEVENT_GROUP_CREATE_FAILED() {}
#[inline(always)]
pub fn traceEVENT_GROUP_SYNC_BLOCK(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToSet: UBaseType_t,
uxBitsToWaitFor: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_SYNC_END(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToSet: UBaseType_t,
uxBitsToWaitFor: UBaseType_t,
xTimeoutOccurred: BaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_WAIT_BITS_BLOCK(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToWaitFor: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_WAIT_BITS_END(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToWaitFor: UBaseType_t,
xTimeoutOccurred: BaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_CLEAR_BITS(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToClear: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_CLEAR_BITS_FROM_ISR(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToClear: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_SET_BITS(pxEventGroup: *mut core::ffi::c_void, uxBitsToSet: UBaseType_t) {}
#[inline(always)]
pub fn traceEVENT_GROUP_SET_BITS_FROM_ISR(
pxEventGroup: *mut core::ffi::c_void,
uxBitsToSet: UBaseType_t,
) {
}
#[inline(always)]
pub fn traceEVENT_GROUP_DELETE(pxEventGroup: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_CREATE(
pxStreamBuffer: *mut core::ffi::c_void,
xIsMessageBuffer: BaseType_t,
) {
}
#[inline(always)]
pub fn traceSTREAM_BUFFER_CREATE_FAILED(xIsMessageBuffer: BaseType_t) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_CREATE_STATIC_FAILED(
xReturn: *mut core::ffi::c_void,
xIsMessageBuffer: BaseType_t,
) {
}
#[inline(always)]
pub fn traceSTREAM_BUFFER_DELETE(pxStreamBuffer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_RESET(pxStreamBuffer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_SEND(pxStreamBuffer: *mut core::ffi::c_void, xBytesSent: usize) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_SEND_FAILED(pxStreamBuffer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_SEND_FROM_ISR(pxStreamBuffer: *mut core::ffi::c_void, xBytesSent: usize) {
}
#[inline(always)]
pub fn traceSTREAM_BUFFER_RECEIVE(pxStreamBuffer: *mut core::ffi::c_void, xReceivedLength: usize) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_RECEIVE_FAILED(pxStreamBuffer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceSTREAM_BUFFER_RECEIVE_FROM_ISR(
pxStreamBuffer: *mut core::ffi::c_void,
xReceivedLength: usize,
) {
}
#[inline(always)]
pub fn traceBLOCKING_ON_STREAM_BUFFER_SEND(pxStreamBuffer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceBLOCKING_ON_STREAM_BUFFER_RECEIVE(pxStreamBuffer: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceISR_ENTER() {}
#[inline(always)]
pub fn traceISR_EXIT() {}
#[inline(always)]
pub fn traceISR_EXIT_TO_SCHEDULER() {}
#[inline(always)]
pub fn traceSCHEDULER_STARTED() {}
#[inline(always)]
pub fn traceSCHEDULER_STOPPED() {}
#[inline(always)]
pub fn traceSCHEDULER_SUSPENDED() {}
#[inline(always)]
pub fn traceSCHEDULER_RESUMED() {}
#[inline(always)]
pub fn traceIDLE_TASK_STARTED() {}
#[inline(always)]
pub fn traceLOW_POWER_IDLE_BEGIN() {}
#[inline(always)]
pub fn traceLOW_POWER_IDLE_END() {}
#[inline(always)]
pub fn traceINCREASE_TICK_COUNT(_xTicksToJump: TickType_t) {}
#[inline(always)]
pub fn traceMALLOC(pvAddress: *mut core::ffi::c_void, uiSize: usize) {}
#[inline(always)]
pub fn traceFREE(pvAddress: *mut core::ffi::c_void, uiSize: usize) {}
#[inline(always)]
pub fn tracePEND_FUNC_CALL(
xFunctionToPend: *mut core::ffi::c_void,
pvParameter1: *mut core::ffi::c_void,
ulParameter2: u32,
xReturn: BaseType_t,
) {
}
#[inline(always)]
pub fn tracePEND_FUNC_CALL_FROM_ISR(
xFunctionToPend: *mut core::ffi::c_void,
pvParameter1: *mut core::ffi::c_void,
ulParameter2: u32,
xReturn: BaseType_t,
) {
}
#[inline(always)]
pub fn traceQUEUE_SET_SEND(pxQueueSet: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceMOVED_TASK_TO_READY_STATE(pxTCB: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn tracePOST_MOVED_TASK_TO_READY_STATE(pxTCB: *mut core::ffi::c_void) {}
#[inline(always)]
pub fn traceMOVED_TASK_TO_DELAYED_LIST() {}
#[inline(always)]
pub fn traceMOVED_TASK_TO_OVERFLOW_DELAYED_LIST() {}
#[macro_export]
macro_rules! traceENTER_xTimerCreateTimerTask {
() => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerCreateTimerTask {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerCreate {
($pcTimerName:expr, $xTimerPeriodInTicks:expr, $xAutoReload:expr, $pvTimerID:expr, $pxCallbackFunction:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerCreate {
($pxNewTimer:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerCreateStatic {
($pcTimerName:expr, $xTimerPeriodInTicks:expr, $xAutoReload:expr, $pvTimerID:expr, $pxCallbackFunction:expr, $pxTimerBuffer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerCreateStatic {
($pxNewTimer:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGenericCommandFromTask {
($xTimer:expr, $xCommandID:expr, $xOptionalValue:expr, $pxHigherPriorityTaskWoken:expr, $xTicksToWait:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGenericCommandFromTask {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGenericCommandFromISR {
($xTimer:expr, $xCommandID:expr, $xOptionalValue:expr, $pxHigherPriorityTaskWoken:expr, $xTicksToWait:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGenericCommandFromISR {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceTIMER_COMMAND_SEND {
($xTimer:expr, $xCommandID:expr, $xOptionalValue:expr, $xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGetTimerDaemonTaskHandle {
() => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGetTimerDaemonTaskHandle {
($xTimerTaskHandle:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGetPeriod {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGetPeriod {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_vTimerSetReloadMode {
($xTimer:expr, $xAutoReload:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_vTimerSetReloadMode {
() => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGetReloadMode {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGetReloadMode {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_uxTimerGetReloadMode {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_uxTimerGetReloadMode {
($uxReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGetExpiryTime {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGetExpiryTime {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_pcTimerGetName {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_pcTimerGetName {
($pcName:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerIsTimerActive {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerIsTimerActive {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_pvTimerGetTimerID {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_pvTimerGetTimerID {
($pvReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_vTimerSetTimerID {
($xTimer:expr, $pvNewID:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_vTimerSetTimerID {
() => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerGetStaticBuffer {
($xTimer:expr, $ppxTimerBuffer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerGetStaticBuffer {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_uxTimerGetTimerNumber {
($xTimer:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_uxTimerGetTimerNumber {
($uxReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_vTimerSetTimerNumber {
($xTimer:expr, $uxTimerNumber:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_vTimerSetTimerNumber {
() => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerPendFunctionCallFromISR {
($xFunctionToPend:expr, $pvParameter1:expr, $ulParameter2:expr, $pxHigherPriorityTaskWoken:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerPendFunctionCallFromISR {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceENTER_xTimerPendFunctionCall {
($xFunctionToPend:expr, $pvParameter1:expr, $ulParameter2:expr, $xTicksToWait:expr) => {};
}
#[macro_export]
macro_rules! traceRETURN_xTimerPendFunctionCall {
($xReturn:expr) => {};
}
#[macro_export]
macro_rules! traceTIMER_CREATE {
($pxTimer:expr) => {};
}
#[macro_export]
macro_rules! traceTIMER_EXPIRED {
($pxTimer:expr) => {};
}
#[macro_export]
macro_rules! traceTIMER_COMMAND_RECEIVED {
($pxTimer:expr, $xMessageID:expr, $xMessageValue:expr) => {};
}
#[macro_export]
macro_rules! tracePEND_FUNC_CALL_FROM_ISR {
($xFunctionToPend:expr, $pvParameter1:expr, $ulParameter2:expr, $xReturn:expr) => {};
}
#[macro_export]
macro_rules! tracePEND_FUNC_CALL {
($xFunctionToPend:expr, $pvParameter1:expr, $ulParameter2:expr, $xReturn:expr) => {};
}