You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
437 B
14 lines
437 B
7 years ago
|
#include "UserParameters.h"
|
||
|
|
||
|
// "USR" + 13 chars remaining for param name
|
||
|
const AP_Param::GroupInfo UserParameters::var_info[] = {
|
||
|
|
||
|
// Put your parameters definition here
|
||
|
// Note the maximum length of parameter name is 13 chars
|
||
|
AP_GROUPINFO("_INT8", 0, UserParameters, _int8, 0),
|
||
|
AP_GROUPINFO("_INT16", 1, UserParameters, _int16, 0),
|
||
|
AP_GROUPINFO("_FLOAT", 2, UserParameters, _float, 0),
|
||
|
|
||
|
AP_GROUPEND
|
||
|
};
|