1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
autogen definitions write_read_test.tpl;
data_type = {
type_name = char ;
data_type = short ;
error_func = CHAR_ERROR ;
format_char = "0x%X" ;
max_val = "32000.0" ;
max_error = "255" ;
} ;
data_type = {
type_name = short ;
data_type = short ;
error_func = INT_ERROR ;
format_char = "0x%X" ;
max_val = "32000.0" ;
max_error = "0" ;
} ;
data_type = {
type_name = "24bit" ;
data_type = int ;
error_func = TRIBYTE_ERROR ;
format_char = "0x%X" ;
max_val = "(1.0 * 0x7F000000)" ;
max_error = "256" ;
} ;
data_type = {
type_name = int ;
data_type = int ;
error_func = INT_ERROR ;
format_char = "0x%X" ;
max_val = "(1.0 * 0x7F000000)" ;
max_error = "0" ;
} ;
/* Lite remove start */
data_type = {
type_name = float ;
data_type = float ;
error_func = FLOAT_ERROR ;
format_char = "%g" ;
max_val = "1.0" ;
max_error = "0" ;
} ;
data_type = {
type_name = double ;
data_type = double ;
error_func = FLOAT_ERROR ;
format_char = "%g" ;
max_val = "1.0" ;
max_error = "0" ;
} ;
/* Lite remove end */
/*
** Do not edit or modify anything in this comment block.
** The arch-tag line is a file identity tag for the GNU Arch
** revision control system.
**
** arch-tag: 624d498a-9ea1-46b5-a386-c1c2261cfce3
*/
|