diff Common/Inc/data_exchange.h @ 559:84a4e1200726

Check if HW evaluation was performed: Devicedata is only requested once at startup and then every 10 minutes. To make sure that HW information related to compass and ADC are forwarded, two indicators have been added which may delay the respond by one second.
author Ideenmodellierer
date Sun, 15 Nov 2020 19:52:03 +0100
parents 573a2bc796c8
children 1b995079c045
line wrap: on
line diff
--- a/Common/Inc/data_exchange.h	Thu Nov 12 20:06:04 2020 +0100
+++ b/Common/Inc/data_exchange.h	Sun Nov 15 19:52:03 2020 +0100
@@ -69,7 +69,9 @@
 } confirmbit8_t;
 
 typedef struct{
-uint8_t reserve:7;
+uint8_t checkCompass:1;
+uint8_t checkADC:1;
+uint8_t reserve:5;
 uint8_t extADC:1;
 uint8_t compass:8;
 } hw_Info_t;