-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprotocol.h
executable file
·66 lines (62 loc) · 1.31 KB
/
protocol.h
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
//******************************************
// This is a c File Head
//×÷Õߣº
//ÈÕÆÚ
//¹¦ÄÜ
//±¸×¢
//******************************************
#ifndef __PROTOCOL_H_
#define __PROTOCOL_H_
//
// typedef enum
// {
// SHOW_ID = 0,
// RETURN_ROLE_RESULT,
// ASK_FOR_INFO,
// RETURN_INFO,
// STOP_COMM,
// START_CHA,
// START_DCHA
// } MSG_TYPE;
// typedef enum
// {
// DIR_BACK=0,
// DIR_FRONT
// } MSG_DIR;
// typedef enum
// {
// ROLE_UNCLEAR=0,
// ROLE_MADTER,
// ROLE_SLAVE
// } MSG_ROLE;
//
// typedef void (*pb_protocal_rec_callback)(uchar * buffer);
// struct PB_MSG
// {
// MSG_DIR msg_dir;
// MSG_ROLE msg_role;
// MSG_TYPE msg_type;
// uchar msg_data[4];
// pb_protocal_rec_callback rec_cb;
//
// };
// void PB_Sent_Manager(void);
// void Encode_UART_Message(uchar dir0, uchar role0, uchar type0);
// void Load_Message_Into_Buff(struct PB_MSG m);
// void Load_Data_To_Message (uchar t);
// void Uncode_UART_Message( void );
//
// void Tx_Send_Data(uint * tx_data);
//
// void Rx_Rcv_Data(void);
//
// void PB_Protocol_Sent_Device_ID(void);
//
// void PB_Protocol_Sent_Device_Info(void);
//
// void PB_Protocol_Sent_Stop_Comm(void);
//
// void PB_Protocol_Compare_Device_ID(void);
//
// void Get_Device_ID(void);
#endif