GM6000 Digital Heater Controller Branch: main
SDX-1330
Constants.h
Go to the documentation of this file.
1#ifndef Ajax_Constants_h_
2#define Ajax_Constants_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 This file contains magic values that are specific to the Ajax application
16 (but not to any one single component)
17
18*/
19
20#include "colony_config.h"
21
22/// Alert priority: POST Alert (lower number == higher priority)
23#define AJAX_ALERT_PRIORITY_POST_FAILED 10
24
25/// Alert priority: Not provisioned Alert (lower number == higher priority)
26#define AJAX_ALERT_PRIORITY_NOT_PROVISIONED 20
27
28/// Alert priority: No (onboard) Sensor Available Alert (lower number == higher priority)
29#define AJAX_ALERT_PRIORITY_SENSOR_FAILED 30
30
31/// Alert priority: Hi-Temp Alert (lower number == higher priority)
32#define AJAX_ALERT_PRIORITY_HI_TEMP 40
33
34/// Alert priority: No Sensor Available Alert (lower number == higher priority)
35#define AJAX_ALERT_PRIORITY_REMOTE_SENSOR_FAILED 50
36
37/// Maximum heating setpoint in hundreds of degrees Fahrenheit
38#ifndef OPTION_AJAX_MAX_HEATING_SETPOINT_F
39#define OPTION_AJAX_MAX_HEATING_SETPOINT_F (85*100)
40#endif
41
42/// Minimum heating setpoint in hundreds of degrees Fahrenheit
43#ifndef OPTION_AJAX_MIN_HEATING_SETPOINT_F
44#define OPTION_AJAX_MIN_HEATING_SETPOINT_F (55*100)
45#endif
46
47/// Maximum supported indoor temperature value in hundreds of degrees Fahrenheit (outside of the range is considered an error)
48#ifndef OPTION_AJAX_MAX_INDOOR_TEMPERATURE_F
49#define OPTION_AJAX_MAX_INDOOR_TEMPERATURE_F (100*100)
50#endif
51
52/// Minimum supported indoor temperature value in hundreds of degrees Fahrenheit (outside of the range is considered an error)
53#ifndef OPTION_AJAX_MIN_INDOOR_TEMPERATURE_F
54#define OPTION_AJAX_MIN_INDOOR_TEMPERATURE_F (40*100)
55#endif
56
57
58/** Maximum size, in bytes, a version string can be. Does NOT include the
59 null terminator
60 */
61#ifndef OPTION_AJAX_MAX_VERSION_LENGTH
62#define OPTION_AJAX_MAX_VERSION_LENGTH 16 // Assumed format is: mm.nn.pp-#######
63#endif
64
65/** Maximum size, in bytes, a model string can be. Does NOT include the
66 null terminator
67 */
68#ifndef OPTION_AJAX_MAX_MODEL_LENGTH
69#define OPTION_AJAX_MAX_MODEL_LENGTH 16
70#endif
71
72 /** Maximum size, in bytes, a serial number string can be. Does NOT include the
73 null terminator
74 */
75#ifndef OPTION_AJAX_MAX_SERIAL_NUM_LENGTH
76#define OPTION_AJAX_MAX_SERIAL_NUM_LENGTH 16
77#endif
78
79/// Size, in bytes, of the Hashed password
80#ifndef OPTION_AJAX_HASHED_PASSWORD_SIZE
81#define OPTION_AJAX_HASHED_PASSWORD_SIZE 64
82#endif
83
84/// Size, in bytes, of the salt used when hashing the password
85#ifndef OPTION_AJAX_HASHED_PASSWORD_SALT_SIZE
86#define OPTION_AJAX_HASHED_PASSWORD_SALT_SIZE 16
87#endif
88
89/// Number of iteration to use when hashing a password
90#ifndef OPTION_AJAX_HASHED_PASSWORD_ITERATIONS
91#define OPTION_AJAX_HASHED_PASSWORD_ITERATIONS 2000 // ~2.3 seconds on the STM32 target
92#endif
93
94/// Maximum,size in bytes, of a password
95#ifndef OPTION_AJAX_PASSWORD_MAX_LENGTH
96#define OPTION_AJAX_PASSWORD_MAX_LENGTH 32
97#endif
98
99/// Minimum,size in bytes, of a password
100#ifndef OPTION_AJAX_PASSWORD_MIN_LENGTH
101#define OPTION_AJAX_PASSWORD_MIN_LENGTH 12
102#endif
103
104/// Value that maps to 100% PWM Duty Cycle for the Heater output signal
105#ifndef OPTION_AJAX_MAX_PWM_VALUE_HEATER
106#define OPTION_AJAX_MAX_PWM_VALUE_HEATER 0xFFFF // Defaulting to a STM32 target
107#endif
108
109/// Value that maps to 100% PWM Duty Cycle for the Fan output signal
110#ifndef OPTION_AJAX_MAX_PWM_VALUE_FAN
111#define OPTION_AJAX_MAX_PWM_VALUE_FAN 0xFFFF // Defaulting to a STM32 target
112#endif
113
114#endif // end header latch
115