/*******************************************
函数名称:SendC0Comm
函数功能:发送“取响应数据”命令
输入参数:无
输出参数:无
描述:当接收到的命令里含有需要接受的数据时,发送此命令开始接收数据
*******************************************/
void SendC0Comm(void)
{
unsigned char cTemp;
Delay1XETU(4);
if(TxAndRxBuff[0]==0x61)
{
cTemp=TxAndRxBuff[1];
cCommandLen=0x05;
TxAndRxBuff[0]=0x00;
TxAndRxBuff[1]=0xc0;
TxAndRxBuff[2]=0x00;
TxAndRxBuff[3]=0x00;
TxAndRxBuff[4]=cTemp;
SendCommandHead_Pro();
}
else iErrorRWrCard=ErrorReadWriteBIT|iErrorRWrCard;
}