PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
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.

core_id.h 505B

3 years ago
123456789101112131415161718
  1. #ifndef CORE_TEENSY
  2. #define CORE_TEENSY
  3. #if defined(USB_SERIAL)
  4. #include "usb_serial/core_id.h"
  5. #elif defined(USB_HID)
  6. #include "usb_hid/core_id.h"
  7. #elif defined(USB_SERIAL_HID)
  8. #include "usb_serial_hid/core_id.h"
  9. #elif defined(USB_DISK) || defined(USB_DISK_SDFLASH)
  10. #include "usb_disk/core_id.h"
  11. #elif defined(USB_MIDI)
  12. #include "usb_midi/core_id.h"
  13. #elif defined(USB_RAWHID)
  14. #include "usb_rawhid/core_id.h"
  15. #elif defined(USB_FLIGHTSIM)
  16. #include "usb_flightsim/core_id.h"
  17. #endif
  18. #endif