]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - Lib/CMake/avr.cmake
Adding more CMake log information.
[kiibohd-controller.git] / Lib / CMake / avr.cmake
index a6985778eda48fdfdb330fec0d9fe99b5f912f33..255d062a4e06f759742e318b5cc5ef6ad42f7cbe 100644 (file)
@@ -36,10 +36,6 @@ message( STATUS "MCU Selected:" )
 message( "${MCU}" )
 
 
-#| Indicate to later build step that this is a Teensy
-set( Teensy )
-
-
 #| Chip Size Database
 #| Teensy 1.0
 if ( "${CHIP}" MATCHES "at90usb162" )
@@ -90,6 +86,12 @@ set( BOOT_VENDOR_ID  "0x16C0" ) # TODO Double check, this is likely incorrect
 set( BOOT_PRODUCT_ID "0x047D" )
 
 
+#| Only Teensy based AVRs supported
+set ( TEENSY 1 )
+message( STATUS "Bootloader Type:" )
+message( "Teensy" )
+
+
 #| Compiler flag to set the C Standard level.
 #|     c89   = "ANSI" C
 #|     gnu89 = c89 plus GCC extensions