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.

TSC2200: Touch Panel Driver

Part Number: TSC2200

Hi Team, i am trying to interface TSC2200 with STM32. Below are the settings I am using for it.

uint8_t ADCCON[2] = { 0x08, 0x00, 0xC8, 0xA2 };
uint8_t REF[2] = { 0x08, 0x60, 0x00, 0x17 }; // to set up {REF}
uint8_t CFG[2] = { 0x08, 0xA0, 0x00, 0x0A }; // to set up {CFG}
uint8_t CFG2[2] = { 0x08, 0xC0, 0xCB, 0xAD }; // to set up {CFG2}
uint8_t TSC[2] = { 0x08, 0x00, 0x07, 0xFF }; // to put TSC to host and slowest mode
uint8_t ADCIN[2] = { 0x08, 0x00, 0x88, 0xA2 }; // to set up (initialize) {ADC}
uint8_t ReadComm[10] = { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

As mentioned in the application notes I am sending above data in the sequence for setup and then trying to read the data. I am getting some data but I am unable to figure out. Also how the read setup is done? 0x8000 is to read from page zero address zero what are the next 4 values which are sent.