Kiibohd Controller
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

mk20dx128vlf5.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="mk20dx128vlf5"
  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="mk20dx128vlf5"
  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