14 lines
273 B
C
14 lines
273 B
C
#pragma once
|
|
|
|
typedef enum _ControlState
|
|
{
|
|
CONTROL_STARTING,
|
|
CONTROL_HEATING,
|
|
CONTROL_OUTDOOR_TOO_WARM,
|
|
CONTROL_RETURN_FLOW_TOO_WARM,
|
|
CONTROL_BURNER_FAULT,
|
|
CONTROL_FAULT,
|
|
} eControlState;
|
|
|
|
void initControl(void);
|
|
eControlState getControlState(void); |