示例#1
0
void Platform_CommWaitForReceiveDataToStop(void)
{
    while (hasHostSentDataInLessThan10Milliseconds())
    {
        Platform_CommReceiveChar();
    }
}
示例#2
0
文件: mri.c 项目: JaredCJR/mri
static int didHostSendGdbAckChar(void)
{
    return ('+' == Platform_CommReceiveChar());
    
}