Merge pull request #91 from Na-Cly/boards/bluemicro52840_v1

Add bluemicro support
This commit is contained in:
Pete Johanson
2020-08-16 22:32:04 -04:00
committed by GitHub
11 changed files with 245 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ title="ZMK Config Setup:"
# TODO: Check for user.name and user.email git configs being set
prompt="Pick an MCU board:"
options=("nice!nano" "QMK Proton-C")
options=("nice!nano" "QMK Proton-C" "BlueMicro52840 (v1)")
echo "$title"
echo ""
@@ -23,6 +23,7 @@ select opt in "${options[@]}" "Quit"; do
1 ) board="nice_nano"; break;;
2 ) board="proton_c"; break;;
3 ) board="bluemicro52840_v1"; break;;
$(( ${#options[@]}+1 )) ) echo "Goodbye!"; exit;;
*) echo "Invalid option. Try another one.";continue;;