2011-09-28 08:47:50 +00:00
|
|
|
###| CMAKE Kiibohd Controller |###
|
|
|
|
#
|
2015-04-14 07:40:48 +00:00
|
|
|
# Jacob Alexander 2011-2015
|
2011-09-28 08:47:50 +00:00
|
|
|
# Due to this file's usefulness:
|
|
|
|
#
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-26 09:34:33 +00:00
|
|
|
###
|
2014-04-19 05:57:14 +00:00
|
|
|
# Chip Selection
|
2013-01-26 09:34:33 +00:00
|
|
|
#
|
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
#| You _MUST_ set this to match the microcontroller you are trying to compile for
|
|
|
|
#| You _MUST_ clean the build directory if you change this value
|
|
|
|
#|
|
|
|
|
set( CHIP
|
2015-03-09 01:40:01 +00:00
|
|
|
# "at90usb162" # Teensy 1.0 (avr)
|
|
|
|
# "atmega32u4" # Teensy 2.0 (avr)
|
|
|
|
# "at90usb646" # Teensy++ 1.0 (avr)
|
|
|
|
# "at90usb1286" # Teensy++ 2.0 (avr)
|
|
|
|
# "mk20dx128" # Teensy 3.0 (arm)
|
2015-01-11 03:55:28 +00:00
|
|
|
"mk20dx128vlf5" # McHCK mk20dx128vlf5
|
2015-03-09 01:40:01 +00:00
|
|
|
# "mk20dx256" # Teensy 3.1 (arm)
|
|
|
|
# "mk20dx256vlh7" # Kiibohd-dfu mk20dx256vlh7
|
2014-10-03 02:30:15 +00:00
|
|
|
CACHE STRING "Microcontroller Chip" )
|
2014-04-19 04:58:14 +00:00
|
|
|
|
2011-11-13 10:04:44 +00:00
|
|
|
|
|
|
|
|
2015-01-01 03:42:16 +00:00
|
|
|
###
|
|
|
|
# Compiler Selection
|
|
|
|
#
|
|
|
|
|
|
|
|
#| *** EXPERIMENTAL ***
|
|
|
|
#| Stick with gcc unless you know what you're doing
|
|
|
|
#| Currently only arm is supported with clang
|
|
|
|
set( COMPILER
|
2015-03-09 01:40:01 +00:00
|
|
|
"gcc" # arm-none-eabi-gcc / avr-gcc - Default
|
|
|
|
# "clang" # arm-none-eabi
|
2015-01-01 03:42:16 +00:00
|
|
|
CACHE STRING "Compiler Type" )
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-29 03:37:19 +00:00
|
|
|
###
|
2014-04-19 05:57:14 +00:00
|
|
|
# Compiler Intialization
|
2011-09-29 03:37:19 +00:00
|
|
|
#
|
2014-08-15 17:42:12 +00:00
|
|
|
set ( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/Lib/CMake )
|
|
|
|
include( initialize )
|
2011-09-28 08:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-29 03:37:19 +00:00
|
|
|
###
|
2014-04-19 05:57:14 +00:00
|
|
|
# Project Modules
|
2011-09-29 03:37:19 +00:00
|
|
|
#
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
#| Note: This is the only section you probably want to modify
|
|
|
|
#| Each module is defined by it's own folder (e.g. Scan/Matrix represents the "Matrix" module)
|
|
|
|
#| All of the modules must be specified, as they generate the sources list of files to compile
|
|
|
|
#| Any modifications to this file will cause a complete rebuild of the project
|
2013-02-02 01:02:55 +00:00
|
|
|
|
2014-06-10 06:01:32 +00:00
|
|
|
#| Please look at the {Scan,Macro,Output,Debug} for information on the modules and how to create new ones
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
##| Deals with acquiring the keypress information and turning it into a key index
|
2014-10-03 02:30:15 +00:00
|
|
|
set( ScanModule "MD1"
|
|
|
|
CACHE STRING "Scan Module" )
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
##| Provides the mapping functions for DefaultMap and handles any macro processing before sending to the OutputModule
|
2014-10-03 02:30:15 +00:00
|
|
|
set( MacroModule "PartialMap"
|
|
|
|
CACHE STRING "Macro Module" )
|
2013-01-30 23:13:49 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
##| Sends the current list of usb key codes through USB HID
|
2014-10-03 02:30:15 +00:00
|
|
|
set( OutputModule "pjrcUSB"
|
|
|
|
CACHE STRING "Output Module" )
|
2013-01-30 23:13:49 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
##| Debugging source to use, each module has it's own set of defines that it sets
|
2014-10-03 02:30:15 +00:00
|
|
|
set( DebugModule "full"
|
|
|
|
CACHE STRING "Debug Module" )
|
2013-01-30 23:13:49 +00:00
|
|
|
|
2014-04-10 03:06:19 +00:00
|
|
|
|
|
|
|
|
2011-09-29 03:37:19 +00:00
|
|
|
###
|
2014-09-14 22:51:36 +00:00
|
|
|
# Keymap Configuration (do not include the .kll extension)
|
2011-09-29 03:37:19 +00:00
|
|
|
#
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-09-14 22:51:36 +00:00
|
|
|
#| Do not include the .kll extension
|
|
|
|
#| * BaseMap maps the native keyboard scan codes to USB Codes so the layout is compatible with all other layouts
|
|
|
|
#| * DefaultMap allows the default keymap to be modified from the BaseMap
|
|
|
|
#| * PartialMaps is a set of dynamically set layers (there is no limit, but too many may use up too much RAM...)
|
|
|
|
#| BaseMap generally does not need to be changed from "defaultMap"
|
|
|
|
#|
|
|
|
|
#| Syntax:
|
|
|
|
#| myMap
|
|
|
|
#| * defines a single .kll layout file, double-quotes are needed to distinguish between layers
|
|
|
|
#| "myMap specialLayer"
|
|
|
|
#| * defines myMap to be the main layout, then replace specialLayers on top of it
|
|
|
|
#|
|
|
|
|
#| - Only for PartialMaps -
|
|
|
|
#| "myMap specialLayer" "myMap colemak" dvorak
|
|
|
|
#| * As before, but also generates a second layer at index 2 and third at index 3
|
|
|
|
#|
|
|
|
|
#| NOTE: Remember to add key(s) to enable each Partial Layer
|
|
|
|
#| NOTE2: Layers are always based up the BaseMap (which should be an ANSI-like mapping)
|
|
|
|
#| NOTE3: Compiler looks in kll/layouts and the build directory for layout files (precedence on build directory)
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-09-14 22:51:36 +00:00
|
|
|
##| Set the base keyboard .kll map, defaults to "defaultMap" if not found
|
|
|
|
##| Looks in Scan/<Module Name> for the available BaseMaps
|
2014-10-03 02:30:15 +00:00
|
|
|
set( BaseMap "defaultMap"
|
|
|
|
CACHE STRING "KLL BaseMap/Scancode Keymapping" )
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-09-14 22:51:36 +00:00
|
|
|
##| Layer additonal .kll maps on the BaseMap, layers are in order from 1st to nth
|
|
|
|
##| Can be set to ""
|
2014-11-13 08:49:02 +00:00
|
|
|
set( DefaultMap "md1Overlay stdFuncMap"
|
2014-10-03 02:30:15 +00:00
|
|
|
CACHE STRING "KLL DefaultMap" )
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-09-14 22:51:36 +00:00
|
|
|
##| ParitalMaps available on top of the BaseMap. See above for syntax on specifying multiple layers vs. layering
|
|
|
|
##| Can be set to ""
|
2014-10-03 02:30:15 +00:00
|
|
|
set( PartialMaps "hhkbpro2"
|
|
|
|
CACHE STRING "KLL PartialMaps/Layer Definitions" )
|
2011-09-28 08:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
###
|
|
|
|
# Source Defines (in addition to the selected Modules)
|
|
|
|
#
|
|
|
|
set( MAIN_SRCS
|
|
|
|
main.c
|
2011-09-28 08:47:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-29 03:37:19 +00:00
|
|
|
###
|
2014-04-19 05:57:14 +00:00
|
|
|
# Project Description
|
2011-09-29 03:37:19 +00:00
|
|
|
#
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
#| Project
|
|
|
|
project( kiibohd_controller )
|
2011-09-28 08:47:50 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
#| Target Name (output name)
|
|
|
|
set( TARGET kiibohd )
|
2011-09-30 05:22:19 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
#| General Settings
|
|
|
|
cmake_minimum_required( VERSION 2.8 )
|
2011-09-30 05:22:19 +00:00
|
|
|
|
|
|
|
|
2014-04-18 01:49:40 +00:00
|
|
|
|
2014-04-19 05:57:14 +00:00
|
|
|
###
|
|
|
|
# Module Initialization / Compilation / Targets
|
|
|
|
#
|
2014-09-16 18:42:24 +00:00
|
|
|
include( modules )
|
|
|
|
include( kll ) # Generate kll layouts if necessary
|
|
|
|
include( build )
|
2011-09-30 05:22:19 +00:00
|
|
|
|