Example #1
0
void Platform_CommWaitForReceiveDataToStop(void)
{
    while (hasHostSentDataInLessThan10Milliseconds())
    {
        Platform_CommReceiveChar();
    }
}
Example #2
0
File: mri.c Project: JaredCJR/mri
static int didHostSendGdbAckChar(void)
{
    return ('+' == Platform_CommReceiveChar());
    
}