]> 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 c4b778e756eb9a0dadb713afb2b4f0425620f06d..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" )
@@ -67,10 +63,6 @@ else ()
 endif ()
 
 
-#| Only Teensy based AVRs supported
-set ( TEENSY 1 )
-
-
 #| Extra Compiler Sources
 #| Mostly for convenience functions like interrupt handlers
 set( COMPILER_SRCS
@@ -94,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