GM6000 Digital Heater Controller Branch: main
SDX-1330
Alert.h
Go to the documentation of this file.
1#ifndef Ajax_Type_Alert_h_
2#define Ajax_Type_Alert_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Type/enum.h"
16
17
18
19///
20namespace Ajax {
21///
22namespace Type {
23
24/** This enumeration defines the name/identifiers for the individual Alerts
25
26 @param Alert Enum
27
28 @param eONBOARD_SENSOR_FAILED The onboard temperature is not working
29 @param eREMOTE_SENSOR_FAILED The remote temperature is not working (not supported in the initial release)
30 @param eHITEMP_HEATER_FAILSAFE The hardware high-temperature failsafe for the Heater has tripped
31 @param ePOST_FAILURE At least one Power On Self Test failed
32 @param eNOT_PROVISIONED The unit is not provisioned (e.g. has no serial number)
33 @param NUM_ALERTS The total number of alert instances
34 */
35BETTER_ENUM( Alert, unsigned
36 , eONBOARD_SENSOR_FAILED = 0
37 , eREMOTE_SENSOR_FAILED
38 , eHITEMP_HEATER_FAILSAFE
39 , ePOST_FAILURE
40 , eNOT_PROVISIONED
41 , NUM_ALERTS
42);
43
44}; // end namespaces
45};
46#endif // end header latch
47
The 'Ajax' namespace is the root name space all GM6000 application specific source code.