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
31
32
33
34
35
36
37
38
39
40
41
42
43
/* ... */
#ifndef __COMMAND_H
#define __COMMAND_H
#ifdef __cplusplus
extern "C" {
#endif
#include "flash_if.h"
#include "main.h"
Includes
void COMMAND_Upload(void);
void COMMAND_Download(void);
void COMMAND_Jump(void);
#ifdef __cplusplus
}extern "C" { ... }
#endif
/* ... */
#endif