2011-09-29 06:25:51 +00:00
|
|
|
###| CMake Kiibohd Controller Macro Module |###
|
|
|
|
#
|
2014-04-06 18:49:27 +00:00
|
|
|
# Written by Jacob Alexander in 2011,2014 for the Kiibohd Controller
|
2011-09-29 06:25:51 +00:00
|
|
|
#
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
|
2013-01-30 23:13:49 +00:00
|
|
|
###
|
|
|
|
# Warning, module has known speed issues on non-matrix designs
|
|
|
|
# Has not been tested in a long time
|
|
|
|
#
|
|
|
|
message( AUTHOR_WARNING
|
|
|
|
"The 'basic' macro module was originally designed for matrix scanning designs,
|
|
|
|
it was found not to be scalable with NKRO keyboard converters.
|
2014-04-06 18:49:27 +00:00
|
|
|
It has also not been tested in a (very) long time, use at your own risk.
|
|
|
|
It is older than the deprecated 'buffer' macro module."
|
2013-01-30 23:13:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
###
|
|
|
|
# Module C files
|
|
|
|
#
|
|
|
|
|
|
|
|
set( MACRO_SRCS
|
2011-09-30 05:22:19 +00:00
|
|
|
macro.c
|
2011-09-29 06:25:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module Specific Options
|
|
|
|
#
|
|
|
|
|
2013-01-30 23:13:49 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Compiler Family Compatibility
|
|
|
|
#
|
|
|
|
set( MacroModuleCompatibility
|
|
|
|
avr
|
|
|
|
)
|
|
|
|
|