1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef _MODULE_PRIMARY_COMM_H_
- #define _MODULE_PRIMARY_COMM_H_
- #include <stdint.h>
- typedef struct StChillerInfo {
- uint8_t ChillerSwitch;
- uint32_t ChillerOnTime;
- uint8_t Reserved[3];
- } ChillerInfo;
- typedef struct StLedConfig {
-
- uint8_t LeftButtonLed: 1;
- uint8_t RightButtonLed: 1;
- uint8_t GreenLED: 1;
- uint8_t YellowLED: 1;
- uint8_t RedLED: 1;
- uint8_t SystemLed4: 1;
- uint8_t AcContactor: 1;
- uint8_t Reserved: 1;
- } LedConfig;
- #define SensorTrigCount 3
- #endif
|