/* Get Command response */
void IP_SDC_GetResp(IP_SDC_001_Type *pSDC, IP_SDC_001_RESP_Type *pResp)
{
	uint8_t i;
	pResp->CmdIndex = SDC_RESPCOMMAND_VAL(pSDC->RESPCMD);
	for (i = 0; i < SDC_CARDSTATUS_BYTENUM; i++) {
		pResp->Data[i] = pSDC->RESPONSE[i];
	}
}
/* Get Command response */
void Chip_SDC_GetResp(LPC_SDC_T *pSDC, SDC_RESP_T *pResp)
{
	uint8_t i;
	pResp->CmdIndex = SDC_RESPCOMMAND_VAL(pSDC->RESPCMD);
	for (i = 0; i < SDC_CARDSTATUS_BYTENUM; i++) {
		pResp->Data[i] = pSDC->RESPONSE[i];
	}
}