comparison BootLoader/Inc/tInfoBootloader.h @ 30:ea1003f63e44

ADD GPL License ...
author jDG
date Tue, 23 Jan 2018 17:29:40 +0100
parents e65d01b6a17e
children 7801c5d8a562
comparison
equal deleted inserted replaced
29:3a98f9e7ca58 30:ea1003f63e44
1 /** 1 ///////////////////////////////////////////////////////////////////////////////
2 ****************************************************************************** 2 /// -*- coding: UTF-8 -*-
3 * @file tInfoBootloader.h - bootloader only - 3 ///
4 * @author heinrichs/weikamp, Christian Weikamp 4 /// \file BootLoader/Inc/tInfoBootloader.h
5 * @version V0.0.1 5 /// \brief Header file communication with PC
6 * @date 08-Aug-2014 6 /// \author heinrichs/weikamp, Christian Weikamp
7 * @brief Header file communication with PC 7 /// \date 08-Aug-2014
8 ****************************************************************************** 8 ///
9 * @attention 9 /// $Id$
10 * 10 ///////////////////////////////////////////////////////////////////////////////
11 * <h2><center>&copy; COPYRIGHT(c) 2014 heinrichs weikamp</center></h2> 11 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh
12 * 12 ///
13 ****************************************************************************** 13 /// This program is free software: you can redistribute it and/or modify
14 */ 14 /// it under the terms of the GNU General Public License as published by
15 /// the Free Software Foundation, either version 3 of the License, or
16 /// (at your option) any later version.
17 ///
18 /// This program is distributed in the hope that it will be useful,
19 /// but WITHOUT ANY WARRANTY; without even the implied warranty of
20 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 /// GNU General Public License for more details.
22 ///
23 /// You should have received a copy of the GNU General Public License
24 /// along with this program. If not, see <http://www.gnu.org/licenses/>.
25 //////////////////////////////////////////////////////////////////////////////
15 26
16 /* Define to prevent recursive inclusion -------------------------------------*/ 27 /* Define to prevent recursive inclusion -------------------------------------*/
17 #ifndef TINFO_BOOTLOADER_H 28 #ifndef TINFO_BOOTLOADER_H
18 #define TINFO_BOOTLOADER_H 29 #define TINFO_BOOTLOADER_H
19 30
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 /* Includes ------------------------------------------------------------------*/ 31 /* Includes ------------------------------------------------------------------*/
25 #include <stdint.h> 32 #include <stdint.h>
26 /** @addtogroup Base
27 * @{
28 */
29 33
30 /* Exported variables --------------------------------------------------------*/ 34 /* Exported functions --------------------------------------------------------*/
31
32
33 /* Exported functions --------------------------------------------------------*/
34 35
35 void tInfoBootloader_init(void); 36 void tInfoBootloader_init(void);
36 void tInfo_newpage(const char * text); 37 void tInfo_newpage(const char * text);
37 void tInfo_write(const char * text); 38 void tInfo_write(const char * text);
38 void tInfo_button_text(const char *text_left, const char *text_mid, const char *text_right); 39 void tInfo_button_text(const char *text_left, const char *text_mid, const char *text_right);
39 40
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif /* TINFO_BOOTLOADER_H */ 41 #endif /* TINFO_BOOTLOADER_H */
45
46 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/