annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
1 /**
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
2 ******************************************************************************
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
3 * @file tInfoBootloader.h - bootloader only -
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
4 * @author heinrichs/weikamp, Christian Weikamp
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
5 * @version V0.0.1
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
6 * @date 08-Aug-2014
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
7 * @brief Header file communication with PC
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
8 ******************************************************************************
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
9 * @attention
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
10 *
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
11 * <h2><center>&copy; COPYRIGHT(c) 2014 heinrichs weikamp</center></h2>
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
12 *
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
13 ******************************************************************************
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
14 */
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
15
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
16 /* Define to prevent recursive inclusion -------------------------------------*/
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
17 #ifndef TINFO_BOOTLOADER_H
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
18 #define TINFO_BOOTLOADER_H
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
19
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
20 #ifdef __cplusplus
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
21 extern "C" {
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
22 #endif
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
23
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
24 /* Includes ------------------------------------------------------------------*/
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
25 #include <stdint.h>
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
26 /** @addtogroup Base
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
27 * @{
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
28 */
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
29
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
30 /* Exported variables --------------------------------------------------------*/
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
31
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
32
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
33 /* Exported functions --------------------------------------------------------*/
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
34
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
35 void tInfoBootloader_init(void);
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
36 void tInfo_newpage(const char * text);
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
37 void tInfo_write(const char * text);
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
38 void tInfo_button_text(const char *text_left, const char *text_mid, const char *text_right);
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
39
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
40 #ifdef __cplusplus
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
41 }
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
42 #endif
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
43
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
44 #endif /* TINFO_BOOTLOADER_H */
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
45
e65d01b6a17e MOVE files for other applications
JeanDo
parents:
diff changeset
46 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/