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.
Hi,
We want to use the All ADC Channels in "4-wire TSC with 4 general-purpose ADC channels" mode.
Because, we have the 4-Wite Touch SCreen (Interfaced to AIN0, AIN1, AIN2 and AIN3) and 4 no's of Temprature Sensors (NTC Resistors) (Interfaced to AIN4, AIN5, AIN6 and AIN7).
Is the Linux BSP Supports TSC and ADC are working same time?.
If not, Now, How i can program the Linux BSP Drivers to support 4-Wire TSC and another 4-ADC working simultaneusly?.
Is there any standlaone example for using the TSC and ADC's, to start Linux BSP Driver Modification?.
Thanks
Reddy
Hi,
I had completed the tsc linux driver modifications to work 4-Wire Touch Screen and 4-Channel General Puprpose ADC.
AIN0, AIN1, AIN2 and AIN3 are used fro Touch Screen, and AIN4, AIN5, AIN6 and AIN7 are used as General Purpose ADC Channels.
From Platfrom driver data, ADC capture can enabled, and and also ADC Capture period in milli seconds can be mentioned.
Present driver using the FIFO 0 for ADC Channels and FIFO 1 for TSC. Data capture in Interrupt mode (non-DMA) hence, capture period is limited to above 100ms.
This can be changed depend on the requirements.
The Patch is attched for refernce.
Thanks
Reddy8816.0001-TSC-General-Purpose-ADC-capturing-added-to-TSC-Modul.zip
Hey Reddy,
Hi Sam,
I am using the latest kernel from http://arago-project.org/git/projects/?p=linux-am33x.git
Reddy
Hi Sam,
How General Purpose ADC inputs are interfaced?.
What is the capacitive load?. In My board, we have the ADC inputs are loaded with Resistive load only.
I had seen only offset 20 to 30 on each channel, and we had measured the input Voltages and calculated the same.
We have to enable the Hardware Preempt for proper working of Touch Screen, when ADC Capture is going on.
I had modified the files. Find the updated files.
Reddy
Reddy,
Thank you very much for the posted code. It helped me immensely to get to grips with ADC. I have a similar but different LCD screen so the driver is different too but looking at your code I was able to quickly implement the required changes to read the ADC as well.
I'm going to be trying to improve the sample rate now. Have you made it work with DMA? Have you got some good pointers for that (main gotchas and nuances)?
Thanks.
Hi,Reddy
I don't know how to test the 4-Channel General Puprpose ADC driver,can you tell me ?
Thanks.
If you've successfully compiled and installed the driver then it will be available as a device which you can simply read from-- either by writing a program that opens the device just like a file and reads from or by simply cat-ing the contents of the device like this:
code example said:cat /sys/devices/platform/tsc/channel_1
Well in your case the path to "channel_1" may be different but that's where I ended up having it.
What is more interesting, is how to improve the sample rate from 10Hz to a lot higher value and that's something I'm hoping to achieve by using edma. Will update on my progress.