已存档
1
0
该仓库已被归档。您可以查看文件和克隆它,但不能推送、创建工单或合并请求。
controller/Scan/ADCTest/setup.cmake
Jacob Alexander 8ee8e3cb55 Adding analog.c lib from teensyduino.
- Mostly for reference, you shouldn't include it verbatim in your module.
2014-04-12 21:13:37 -07:00

34 行
405 B
CMake

###| CMake Kiibohd Controller Scan Module |###
#
# Written by Jacob Alexander in 2014 for the Kiibohd Controller
#
# Released into the Public Domain
#
# ADC/DAC example. DAC only works on microcontrollers that support it.
#
###
###
# Module C files
#
set( SCAN_SRCS
scan_loop.c
analog.c
)
###
# Module Specific Options
#
###
# Compiler Family Compatibility
#
set( ScanModuleCompatibility
arm
)