From 57b92cad75c72f2a60af21ff2bbf595acd70a88c Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Wed, 29 Jul 2020 17:47:55 -0400 Subject: [PATCH] Changed deploy to use JTAG --- Makefile | 2 +- src/main.cpp | 16 +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 291ae20..0c65321 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,4 @@ libdaisy: daisysp: cd $(DAISYSP_DIR) && make lib: libdaisy daisysp -deploy: lib all program-dfu +deploy: lib all program diff --git a/src/main.cpp b/src/main.cpp index f11fbf0..1143519 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -12,13 +12,15 @@ using namespace daisysp; DaisyPatch patch; const std::string MENU_ITEMS[] = {"VCO", - "VCA", - "Envelope", - "LFO", - "Logic", - "Noise", - "Delay", - "Reverb"}; + "VCA", + "Envelope", + "LFO", + "Logic", + "Noise", + "Delay", + "Reverb", + "Turing", + "Quantizer"}; const int MENU_SIZE = sizeof(MENU_ITEMS)/sizeof(*MENU_ITEMS); const int MAX_CHAR_LENGTH = 15; const int MENU_X[] = {0, 5, 10, 5, 0};