This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/ADS1292RECG-FE: Need help to undertand data packets structure coming out on the ADS1292 ECG FE USB

Part Number: ADS1292RECG-FE
Other Parts Discussed in Thread: ADS1292, ADS1292R, TIDM-BIOSIGNMONITOR

Tool/software: Code Composer Studio

Dear E2E TI Team,

We would like to understand and have more information about ECG data packets coming out on the ADS1292RECG-FE USB.

Knowing that :

 -  The ECGTxPacket table is sent to the USB after ECGTxPacketRdy.

 -  The ECGTxPacket table is sent to the USB after ECGTxPacketRdy datapacket Flag  is ready.

 -  The process to fill ECGTxPacket table can find in the  Stream_ECG_data_packets() function code source as below :          

for ( ucLoopCnt =0 ; ucLoopCnt < 2; ucLoopCnt++)
{
ECGTxPacket[StreamCount++]= (ECGFilteredData[ucLoopCnt] & 0x00FF); // High Byte B15-B8
ECGTxPacket[StreamCount++]= (ECGFilteredData[ucLoopCnt] & 0xFF00) >> 8 ; // Low byte B7-B0
}

 -   We have the GIU PC software source, We tried to understand but without result.

Could you please help us to understand how to extract and get a separately Resperation_Data and ECG_Data because we need them for our customized smartphone application?

Best regards,

Haithem.