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.
19 lines
233 B
19 lines
233 B
1 year ago
|
#ifndef _BSP_PT100X_H_
|
||
|
#define _BSP_PT100X_H_
|
||
|
|
||
|
#include "bsp_config.h"
|
||
|
#include "msp_uart1.h"
|
||
|
#include "TTSS_task.h"
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
u8 pool;
|
||
|
u8 now;
|
||
|
u8 val;
|
||
|
}TS_key_;
|
||
|
extern TS_key_ ts_key;
|
||
|
|
||
|
|
||
|
#endif////#ifndef _BSP_PT100X_H_
|
||
|
|