d6345c307f
- Cleaned up Macro and USB callback naming - Added security jumper for automated reload (MCHCK based only) - Added additional LED position
35 lines
399 B
CMake
35 lines
399 B
CMake
###| CMake Kiibohd Controller Scan Module |###
|
|
#
|
|
# Written by Jacob Alexander in 2014 for the Kiibohd Controller
|
|
#
|
|
# Released into the Public Domain
|
|
#
|
|
###
|
|
|
|
|
|
###
|
|
# Module C files
|
|
#
|
|
|
|
set( SCAN_SRCS
|
|
scan_loop.c
|
|
../MatrixARM/matrix_scan.c
|
|
)
|
|
|
|
|
|
###
|
|
# Module Specific Options
|
|
#
|
|
add_definitions(
|
|
-I${HEAD_DIR}/Scan/MatrixARM
|
|
)
|
|
|
|
|
|
###
|
|
# Compiler Family Compatibility
|
|
#
|
|
set( ScanModuleCompatibility
|
|
arm
|
|
)
|
|
|