diff options
Diffstat (limited to 'list.h')
-rw-r--r-- | list.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,13 +8,13 @@ /*特定与程序的声明*/ #define VOLTLEN 96 -#define TEMPLEN 32 +#define TEMPLEN 48 typedef struct can { uint32_t t; double volt[VOLTLEN]; - double temp[TEMPLEN]; + uint16_t temp[TEMPLEN]; }; /*一般类型定义*/ |