aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'cores/arduino/Platform.h')
-rw-r--r--cores/arduino/Platform.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/cores/arduino/Platform.h b/cores/arduino/Platform.h
new file mode 100644
index 0000000..6a1f340
--- /dev/null
+++ b/cores/arduino/Platform.h
@@ -0,0 +1,21 @@
+
+#ifndef __PLATFORM_H__
+#define __PLATFORM_H__
+
+#include <inttypes.h>
+#include <avr/pgmspace.h>
+#include <avr/eeprom.h>
+#include <avr/interrupt.h>
+#include <util/delay.h>
+
+typedef unsigned char u8;
+typedef unsigned short u16;
+typedef unsigned long u32;
+
+#include "Arduino.h"
+
+#include "USBDesc.h"
+#include "USBCore.h"
+#include "USBAPI.h"
+
+#endif