diff options
| author | Donald Delmar Davis <don@suspectdevices.com> | 2013-10-26 15:50:16 -0700 |
|---|---|---|
| committer | Donald Delmar Davis <don@suspectdevices.com> | 2013-10-26 15:50:16 -0700 |
| commit | 5bac9dcb4569f107315768677e4c6d580a743171 (patch) | |
| tree | 2822f877b07b7f6fbfeec54e40448b65ae196c15 /Platform.h | |
| parent | 7edfa511b95c70673b87b988a0cd81eb2f8b168b (diff) | |
Diffstat (limited to 'Platform.h')
| -rw-r--r-- | Platform.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Platform.h b/Platform.h new file mode 100644 index 0000000..8b8f742 --- /dev/null +++ b/Platform.h @@ -0,0 +1,23 @@ + +#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" + +#if defined(USBCON) + #include "USBDesc.h" + #include "USBCore.h" + #include "USBAPI.h" +#endif /* if defined(USBCON) */ + +#endif |
