]> git.gir.st - tmk_keyboard.git/blob - protocol/usb_hid/arduino-1.0.1/cores/arduino/Platform.h
Change TOP_DIR to TMK_DIR in makefiles
[tmk_keyboard.git] / protocol / usb_hid / arduino-1.0.1 / cores / 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
Imprint / Impressum