Updating Debug Modules to new abstracted hierarchy

- Also added some extra CMake build messages for indicating the Compiler family and chip being built for
This commit is contained in:
Jacob Alexander 2013-01-26 15:43:59 -05:00
parent 14158009b2
commit a31f0e064a
6 changed files with 52 additions and 9 deletions

View file

@ -24,14 +24,16 @@
// ----- Includes -----
// AVR Includes
#include <avr/pgmspace.h>
// USB Includes
// Compiler Includes
#if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
#include <avr/pgmspace.h>
#include "avr/usb_keyboard_debug.h"
#elif defined(_mk20dx128_)
#include "arm/usb_keyboard.h"
#endif