|
|
@ -83,7 +83,12 @@ void TaskMsgJob(const void *argument) |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
else { |
|
|
|
assert_param(slot.msg.len > 0 && slot.msg.len <= MSG_QUE_SLOT_SIZE); // check the len is within bounds
|
|
|
|
assert_param(slot.msg.len > 0 && slot.msg.len <= MSG_QUE_SLOT_SIZE); // check the len is within bounds
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if CDC_LOOPBACK_TEST |
|
|
|
|
|
|
|
TF_WriteImpl(comm, slot.msg.data, slot.msg.len); |
|
|
|
|
|
|
|
#else |
|
|
|
TF_Accept(comm, slot.msg.data, slot.msg.len); |
|
|
|
TF_Accept(comm, slot.msg.data, slot.msg.len); |
|
|
|
|
|
|
|
#endif |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#if USE_STACK_MONITOR |
|
|
|
#if USE_STACK_MONITOR |
|
|
|