You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

Platform.h 401B

1234567891011121314151617181920212223
  1. #ifndef __PLATFORM_H__
  2. #define __PLATFORM_H__
  3. #include <inttypes.h>
  4. #include <avr/pgmspace.h>
  5. #include <avr/eeprom.h>
  6. #include <avr/interrupt.h>
  7. #include <util/delay.h>
  8. typedef unsigned char u8;
  9. typedef unsigned short u16;
  10. typedef unsigned long u32;
  11. #include "Arduino.h"
  12. #if defined(USBCON)
  13. #include "USBDesc.h"
  14. #include "USBCore.h"
  15. #include "USBAPI.h"
  16. #endif /* if defined(USBCON) */
  17. #endif