From 55db02461ca620697a8302fb92b23154f9ffeb3d Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 15 Sep 2016 17:40:23 +0100 Subject: [PATCH] Add the ZUM V1.2 board to the menu. --- mmdvmmenu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mmdvmmenu.sh b/mmdvmmenu.sh index aa56151..672b9ad 100755 --- a/mmdvmmenu.sh +++ b/mmdvmmenu.sh @@ -67,7 +67,7 @@ do (4) Use the COS to lockout the modem (5) Use pins to output the current mode (6) Use layout for the PAPA board - (7) Use layout for ZUM board V1.0 + (7) Use layout for ZUM board V1.0 and V1.2 (8) Use layout for SP8NTH board (9) Return to Default @@ -82,7 +82,7 @@ EOF "4") sed -e 's/\/\/ #define USE_COS_AS_LOCKOUT /#define USE_COS_AS_LOCKOUT/' $conf > $conf.tmp && mv -f $conf.tmp $conf && echo "COS as Lockout enabled";; "5") sed -e 's/\/\/ #define ARDUINO_MODE_PINS/#define ARDUINO_MODE_PINS/' $conf > $conf.tmp && mv -f $conf.tmp $conf && echo "Mode pins Enabled";; "6") sed -e 's/\/\/ #define ARDUINO_DUE_PAPA/#define ARDUINO_DUE_PAPA/' $conf > $conf.tmp && mv -f $conf.tmp $conf && echo "Layout for the PAPA board enabled";; - "7") sed -e 's/\/\/ #define ARDUINO_DUE_ZUM_V10/#define ARDUINO_DUE_ZUM_V10/' $conf > $conf.tmp && mv -f $conf.tmp $conf && echo "Layout for ZUM board V1.0 enabled";; + "7") sed -e 's/\/\/ #define ARDUINO_DUE_ZUM_V10/#define ARDUINO_DUE_ZUM_V10/' $conf > $conf.tmp && mv -f $conf.tmp $conf && echo "Layout for ZUM board V1.0 and V1.2 enabled";; "8") sed -e 's/\/\/ #define ARDUINO_DUE_NTH/#define ARDUINO_DUE_NTH/' $conf > $conf.tmp && mv -f $conf.tmp $conf && echo "Layout for SP8NTH board enabled";; "9") mv -f $confbak $conf ;; "Q") echo "If any changes are made you need to (re-)upload the firmware to MMDVM" && exit;;