]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - arduino/Platform.h
Add a qwerty layer
[max/tmk_keyboard.git] / arduino / Platform.h
1
2 #ifndef __PLATFORM_H__
3 #define __PLATFORM_H__
4
5 #include <inttypes.h>
6 #include <avr/pgmspace.h>
7 #include <avr/eeprom.h>
8 #include <avr/interrupt.h>
9 #include <util/delay.h>
10
11 typedef unsigned char u8;
12 typedef unsigned short u16;
13 typedef unsigned long u32;
14
15 #include "Arduino.h"
16
17 #if defined(USBCON)
18         #include "USBDesc.h"
19         #include "USBCore.h"
20         #include "USBAPI.h"
21 #endif /* if defined(USBCON) */
22
23 #endif