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.

mk20dx256vlh7.bash 922B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/usr/bin/env bash
  2. # This is a build script template
  3. # These build scripts are just a convenience for configuring your keyboard (less daunting than CMake)
  4. # Jacob Alexander 2015-2016
  5. #################
  6. # Configuration #
  7. #################
  8. BuildPath="mk20dx256vlh7"
  9. ##########################
  10. # Advanced Configuration #
  11. ##########################
  12. # Don't change the variables in this section unless you know what you're doing
  13. # These are useful for completely custom keyboards
  14. # NOTE: Changing any of these variables will require a force build to compile correctly
  15. # Microcontroller
  16. Chip="mk20dx256vlh7"
  17. # Compiler Selection
  18. Compiler="gcc"
  19. ########################
  20. # Bash Library Include #
  21. ########################
  22. # Shouldn't need to touch this section
  23. # Check if the library can be found
  24. if [ ! -f cmake.bash ]; then
  25. echo "ERROR: Cannot find 'cmake.bash'"
  26. exit 1
  27. fi
  28. # Load the library
  29. source cmake.bash