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
| #ifndef _UPPER_COM_IAP_PRO_H_
| #define _UPPER_COM_IAP_PRO_H_
|
| #include "define_all.h"
| #include "bootloader_iap.h"
| #include "upper_com.h"
|
| typedef enum
| {
| UIC_APP_RESET = 0x9600,
| UIC_APP_CONFIG,
| UIC_APP_DIFF_DATA,
| UIC_APP_CONFIG_CHECK,
| UIC_APP_DIFF_MAP,
| UIC_APP_CONFIG_LZMA
| }UC_IAP_CMD;
|
|
|
|
|
|
|
|
|
|
|
|
| void Upper_ComputerIapHandler(UC_RECV_DATA_UNION_T *uc_recv_data_union_p,UC_RECV_DATA_UNION_T *uc_respond_data_p);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| #endif
|
|