comparison Bootloader/ftfl.h @ 341:66eccdd9ced5

Code cleanup - Changing header file ifndef define to pragma once's - Removed duplicate output_com.h's
author Jacob Alexander <haata@kiibohd.com>
date Sun, 14 Jun 2015 13:56:56 -0700
parents ab4515606277
children
comparison
equal deleted inserted replaced
340:e8841d3c6db5 341:66eccdd9ced5
1 /* Copyright (c) 2011,2012 Simon Schubert <2@0x2c.org>. 1 /* Copyright (c) 2011,2012 Simon Schubert <2@0x2c.org>.
2 * Modifications by Jacob Alexander 2014 <haata@kiibohd.com> 2 * Modifications by Jacob Alexander 2014-2015 <haata@kiibohd.com>
3 * 3 *
4 * This program is free software: you can redistribute it and/or modify 4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or 6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version. 7 * (at your option) any later version.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 #ifndef __FTFL_H 18 #pragma once
19 #define __FTFL_H
20 19
21 // ----- Local Includes ----- 20 // ----- Local Includes -----
22 21
23 #include "mchck-cdefs.h" 22 #include "mchck-cdefs.h"
24 23
240 239
241 extern volatile struct FTFL_t FTFL; 240 extern volatile struct FTFL_t FTFL;
242 extern char FlexRAM[]; 241 extern char FlexRAM[];
243 extern struct FTFL_CONFIG_t FTFL_CONFIG; 242 extern struct FTFL_CONFIG_t FTFL_CONFIG;
244 243
245 #endif
246