comparison Scan/STLcd/lcd_scan.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 9e31d92caf12
children 23a1868b4ac2
comparison
equal deleted inserted replaced
340:e8841d3c6db5 341:66eccdd9ced5
12 * 12 *
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this file. If not, see <http://www.gnu.org/licenses/>. 14 * along with this file. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16 16
17 #ifndef __LCD_SCAN_H 17 #pragma once
18 #define __LCD_SCAN_H
19 18
20 // ----- Includes ----- 19 // ----- Includes -----
21 20
22 // Compiler Includes 21 // Compiler Includes
23 #include <stdint.h> 22 #include <stdint.h>
27 // ----- Functions ----- 26 // ----- Functions -----
28 27
29 void LCD_setup(); 28 void LCD_setup();
30 uint8_t LCD_scan(); 29 uint8_t LCD_scan();
31 30
32
33 #endif // __LCD_SCAN_H
34