Project

General

Profile

Statistics
| Branch: | Revision:

root / arduino-1.0 / hardware / arduino / cores / arduino / Platform.h @ 58d82c77

History | View | Annotate | Download (401 Bytes)

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