Reputation: 523
I have an embedded board which has ARM controller, runs Linux as OS, which also has touch based screen. The data to the screen is taken from the Frame Buffer (/dev/fb0). Is there any way we can calculate the response time between two UI screen switching occurs when any option is selected by touch?
Upvotes: 1
Views: 405
Reputation: 22487
There are 3 latencies involved in the above scenario
input_report()
The final latency is a sum-total of the above 3 latencies.
Upvotes: 2