logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

Platform.h (401B)


  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