Mercurial > public > ostc4
comparison 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 |
comparison
equal
deleted
inserted
replaced
558:66aef216828b | 559:84a4e1200726 |
---|---|
67 uint8_t batterygauge:1; | 67 uint8_t batterygauge:1; |
68 uint8_t accident:1; | 68 uint8_t accident:1; |
69 } confirmbit8_t; | 69 } confirmbit8_t; |
70 | 70 |
71 typedef struct{ | 71 typedef struct{ |
72 uint8_t reserve:7; | 72 uint8_t checkCompass:1; |
73 uint8_t checkADC:1; | |
74 uint8_t reserve:5; | |
73 uint8_t extADC:1; | 75 uint8_t extADC:1; |
74 uint8_t compass:8; | 76 uint8_t compass:8; |
75 } hw_Info_t; | 77 } hw_Info_t; |
76 | 78 |
77 | 79 |