From c26e5a0b4442fff9ab02cdaeaab15d954820aa98 Mon Sep 17 00:00:00 2001 From: futerigele Date: Tue, 30 Nov 2021 11:30:07 +0800 Subject: [PATCH] examples/touchscreen: added timestamp printing in tc added timestamp printing in tc Signed-off-by: futerigele --- examples/touchscreen/tc_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/touchscreen/tc_main.c b/examples/touchscreen/tc_main.c index 9150a10a2..6b792a6ff 100644 --- a/examples/touchscreen/tc_main.c +++ b/examples/touchscreen/tc_main.c @@ -204,6 +204,7 @@ int main(int argc, FAR char *argv[]) printf(" h : %d\n", sample.point[0].h); printf(" w : %d\n", sample.point[0].w); printf(" pressure : %d\n", sample.point[0].pressure); + printf(" timestamp : %" PRIu64"\n", sample.point[0].timestamp); } #endif