summaryrefslogtreecommitdiff
path: root/sensors-service/test
diff options
context:
space:
mode:
authorHelmut Schmidt <Helmut.3.Schmidt@continental-corporation.com>2016-01-14 18:15:02 +0100
committerHelmut Schmidt <Helmut.3.Schmidt@continental-corporation.com>2016-01-14 18:15:02 +0100
commit8895a4eb87d4abe1e44f1ecca440bbc7a99c3f6a (patch)
treeff724b306be0657fc2e36156d9ee774425b27d9b /sensors-service/test
parent3e8f2ad9e8b87b3bedf14507a8a836d6d58654c9 (diff)
downloadpositioning-8895a4eb87d4abe1e44f1ecca440bbc7a99c3f6a.tar.gz
Change Wheel API according TomTom proposal: minor API fix + PoC adaptationGT3039_wheelAPI_2
Diffstat (limited to 'sensors-service/test')
-rw-r--r--sensors-service/test/sensors-service-client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sensors-service/test/sensors-service-client.c b/sensors-service/test/sensors-service-client.c
index bb575dc..76f5cc8 100644
--- a/sensors-service/test/sensors-service-client.c
+++ b/sensors-service/test/sensors-service-client.c
@@ -65,10 +65,10 @@ static void cbWheel(const TWheelData wheelData[], uint16_t numElements)
}
LOG_INFO_MSG(gCtx,"Wheel Update");
- LOG_INFO(gCtx,"wheel1=%f", wheelData[0].wheel1);
- LOG_INFO(gCtx,"wheel2=%f", wheelData[0].wheel2);
- LOG_INFO(gCtx,"wheel3=%f", wheelData[0].wheel3);
- LOG_INFO(gCtx,"wheel4=%f", wheelData[0].wheel4);
+ LOG_INFO(gCtx,"data[0]=%.1f", wheelData[0].data[0]);
+ LOG_INFO(gCtx,"data[1]=%.1f", wheelData[0].data[1]);
+ LOG_INFO(gCtx,"data[2]=%.1f", wheelData[0].data[2]);
+ LOG_INFO(gCtx,"data[3]=%.1f", wheelData[0].data[3]);
}