]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - CMakeLists.txt
Fixing RAM calculator and reduced actual SRAM usage
[kiibohd-controller.git] / CMakeLists.txt
index 8360750233fa69ca3aca0b48083ea0f4674c452c..e7e92d100a4041227e89ab6c6b1ccf60b4366575 100644 (file)
@@ -21,8 +21,8 @@ set( CHIP
 #      "atmega32u4"       # Teensy   2.0 (avr)
 #      "at90usb646"       # Teensy++ 1.0 (avr)
 #      "at90usb1286"      # Teensy++ 2.0 (avr)
-       "mk20dx128"        # Teensy   3.0 (arm)
-#      "mk20dx128vlf5"    # McHCK    mk20dx128vlf5
+#      "mk20dx128"        # Teensy   3.0 (arm)
+       "mk20dx128vlf5"    # McHCK    mk20dx128vlf5
 #      "mk20dx256"        # Teensy   3.1 (arm)
 )
 
@@ -31,7 +31,8 @@ set( CHIP
 ###
 # Compiler Intialization
 #
-include( Lib/CMake/initialize.cmake )
+set ( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/Lib/CMake )
+include( initialize )
 
 
 
@@ -47,13 +48,13 @@ include( Lib/CMake/initialize.cmake )
 #| Please look at the {Scan,Macro,Output,Debug} for information on the modules and how to create new ones
 
 ##| Deals with acquiring the keypress information and turning it into a key index
-set(   ScanModule "MDPure" )
+set(   ScanModule "MD1" )
 
 ##| Provides the mapping functions for DefaultMap and handles any macro processing before sending to the OutputModule
 set(  MacroModule "PartialMap" )
 
 ##| Sends the current list of usb key codes through USB HID
-set( OutputModule "usbMuxUart" )
+set( OutputModule "pjrcUSB" )
 
 ##| Debugging source to use, each module has it's own set of defines that it sets
 set(  DebugModule "full" )