18 lines
247 B
C
18 lines
247 B
C
|
#ifndef BOOTLOADER_H_
|
||
|
#define BOOTLOADER_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*
|
||
|
* Used to trick the linker to include bootloader code into the binary.
|
||
|
*/
|
||
|
int initBootloader(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* BOOTLOADER_H_ */
|