comparison BootLoader/Inc/tInfoBootloader.h @ 5:e65d01b6a17e

MOVE files for other applications
author JeanDo
date Fri, 15 Dec 2017 01:45:20 +0100
parents
children ea1003f63e44
comparison
equal deleted inserted replaced
4:89a87ddc2e47 5:e65d01b6a17e
1 /**
2 ******************************************************************************
3 * @file tInfoBootloader.h - bootloader only -
4 * @author heinrichs/weikamp, Christian Weikamp
5 * @version V0.0.1
6 * @date 08-Aug-2014
7 * @brief Header file communication with PC
8 ******************************************************************************
9 * @attention
10 *
11 * <h2><center>&copy; COPYRIGHT(c) 2014 heinrichs weikamp</center></h2>
12 *
13 ******************************************************************************
14 */
15
16 /* Define to prevent recursive inclusion -------------------------------------*/
17 #ifndef TINFO_BOOTLOADER_H
18 #define TINFO_BOOTLOADER_H
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 /* Includes ------------------------------------------------------------------*/
25 #include <stdint.h>
26 /** @addtogroup Base
27 * @{
28 */
29
30 /* Exported variables --------------------------------------------------------*/
31
32
33 /* Exported functions --------------------------------------------------------*/
34
35 void tInfoBootloader_init(void);
36 void tInfo_newpage(const char * text);
37 void tInfo_write(const char * text);
38 void tInfo_button_text(const char *text_left, const char *text_mid, const char *text_right);
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif /* TINFO_BOOTLOADER_H */
45
46 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/