1#ifndef Ajax_Heating_Flc_Config_h_
2#define Ajax_Heating_Flc_Config_h_
20#define AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS 5
45 memset( (
void*)
this, 0,
sizeof(
Config_T ) );
51 memcpy( (
void*)
this, (
void*) &other,
sizeof(
Config_T ) );
61 memset( (
void*)
this, 0,
sizeof(
Config_T ) );
66 memcpy(
outK, outk,
sizeof(
outK ) );
72 return memcmp(
this, &other,
sizeof(
Config_T ) ) == 0;
78 memcpy( (
void*)
this, (
void*) &other,
sizeof(
Config_T ) );
#define AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS
Number of member sets supported.
Definition Config.h:20
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
Struct defines the geometry of the input membership function.
Definition Config.h:34
Config_T()
Constructor (to ensure any pad bytes get zero'd -->needed for brute force compare operation)
Definition Config.h:43
int32_t maxY
Maximum Y axis value.
Definition Config.h:36
int32_t errScalar
Scaler applied to the calculate error value (before fuzzifying)
Definition Config.h:37
int32_t dErrScalar
Scaler applied to the calculate dError value (before fuzzifying).
Definition Config.h:38
int32_t outK[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]
Set Strengths for the output membership function.
Definition Config.h:39
Config_T & operator=(const Config_T &other)
Copy operator.
Definition Config.h:76
Config_T(const Config_T &other)
Copy Constructor (to ensure any pad bytes get zero'd)
Definition Config.h:49
int32_t outputScalar
Scaler value (applied to numerator) used when defuzzifying the output.
Definition Config.h:35
bool operator==(Config_T const other) const
Comparison operator (for DM support)
Definition Config.h:70
Config_T(int32_t outputscalar, int32_t maxy, int32_t errscalar, int32_t derrscalar, int32_t outk[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS])
Constructor - all arguments.
Definition Config.h:55