Kiibohd Controller
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Repozitorijs ir arhivēts. Tam var aplūkot failus un to var klonēt, bet nevar iesūtīt jaunas izmaiņas, kā arī atvērt jaunas problēmas/izmaiņu pieprasījumus.

setup.cmake 731B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ###| CMake Kiibohd Controller Macro Module |###
  2. #
  3. # Written by Jacob Alexander in 2011,2014 for the Kiibohd Controller
  4. #
  5. # Released into the Public Domain
  6. #
  7. ###
  8. ###
  9. # Warning, module has known speed issues on non-matrix designs
  10. # Has not been tested in a long time
  11. #
  12. message( AUTHOR_WARNING
  13. "The 'basic' macro module was originally designed for matrix scanning designs,
  14. it was found not to be scalable with NKRO keyboard converters.
  15. It has also not been tested in a (very) long time, use at your own risk.
  16. It is older than the deprecated 'buffer' macro module."
  17. )
  18. ###
  19. # Module C files
  20. #
  21. set( MACRO_SRCS
  22. macro.c
  23. )
  24. ###
  25. # Module Specific Options
  26. #
  27. ###
  28. # Compiler Family Compatibility
  29. #
  30. set( MacroModuleCompatibility
  31. avr
  32. )