22 lines
353 B
C
22 lines
353 B
C
#ifndef _PROTO_PRINT_H_
|
|
#define _PROTO_PRINT_H_
|
|
|
|
#include "main.h"
|
|
|
|
#define PROTO_PRINT_MAX 3
|
|
|
|
#define PROTO_PRINT_NULL 0
|
|
#define PROTO_PRINT_CURDATA 1
|
|
#define PROTO_PRINT_WAVE 2
|
|
#define PROTO_PRINT_CALIB 3
|
|
|
|
typedef struct
|
|
{
|
|
void (*task)(void);
|
|
void (*set)(u8);
|
|
}proto_print_t;
|
|
|
|
extern proto_print_t print;
|
|
|
|
#endif
|