From cfb776561c1669d5a3727bd6a7fe44e643078eed Mon Sep 17 00:00:00 2001 From: probonopd <probonopd@users.noreply.github.com> Date: Thu, 14 Nov 2024 21:37:24 +0100 Subject: [PATCH 1/4] Update circle to test stuck notes issue No other changes. See whether we get the stuck notes issue. References: * https://github.com/probonopd/MiniDexed/pull/750 * https://github.com/probonopd/MiniDexed/pull/747 --- submod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submod.sh b/submod.sh index f9524a3..78531dc 100755 --- a/submod.sh +++ b/submod.sh @@ -12,7 +12,7 @@ cd - # # Optional update submodules explicitly cd circle-stdlib/libs/circle -git checkout fff3764 +git checkout c243194 cd - cd circle-stdlib/libs/circle-newlib #git checkout develop From 406b65155b9eb2cf28c72e80d2517f9dce261c91 Mon Sep 17 00:00:00 2001 From: probonopd <probonopd@users.noreply.github.com> Date: Tue, 18 Mar 2025 21:32:30 +0100 Subject: [PATCH 2/4] git checkout tags/Step49 --- submod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submod.sh b/submod.sh index 78531dc..ab9ed7d 100755 --- a/submod.sh +++ b/submod.sh @@ -6,7 +6,7 @@ git submodule update --init --recursive # # Use fixed master branch of circle-stdlib then re-update cd circle-stdlib/ -git checkout 3bd135d +git checkout tags/Step49 git submodule update --init --recursive cd - # From 10a2962cc6e309cae1daab0e65e33fe728ae3ea8 Mon Sep 17 00:00:00 2001 From: probonopd <probonopd@users.noreply.github.com> Date: Tue, 18 Mar 2025 21:38:17 +0100 Subject: [PATCH 3/4] git checkout tags/Step49 --- submod.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/submod.sh b/submod.sh index ab9ed7d..2e2f1a8 100755 --- a/submod.sh +++ b/submod.sh @@ -6,13 +6,13 @@ git submodule update --init --recursive # # Use fixed master branch of circle-stdlib then re-update cd circle-stdlib/ -git checkout tags/Step49 +git checkout 3bd135d git submodule update --init --recursive cd - # # Optional update submodules explicitly cd circle-stdlib/libs/circle -git checkout c243194 +git checkout tags/Step49 cd - cd circle-stdlib/libs/circle-newlib #git checkout develop From 7a8ef53f83c7a8744cbd2d15c8a4c73b472c1abf Mon Sep 17 00:00:00 2001 From: probonopd <probonopd@users.noreply.github.com> Date: Tue, 18 Mar 2025 22:05:45 +0100 Subject: [PATCH 4/4] Update userinterface.cpp https://github.com/probonopd/MiniDexed/pull/755#issuecomment-2734721980 --- src/userinterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/userinterface.cpp b/src/userinterface.cpp index aa46f9e..2f98619 100644 --- a/src/userinterface.cpp +++ b/src/userinterface.cpp @@ -96,7 +96,7 @@ bool CUserInterface::Initialize (void) { m_pST7789Display->SetRotation (m_pConfig->GetST7789Rotation()); bool bLargeFont = !(m_pConfig->GetST7789SmallFont()); - m_pST7789 = new CST7789Device (m_pSPIMaster, m_pST7789Display, m_pConfig->GetLCDColumns (), m_pConfig->GetLCDRows (), bLargeFont, bLargeFont); + m_pST7789 = new CST7789Device (m_pSPIMaster, m_pST7789Display, m_pConfig->GetLCDColumns (), m_pConfig->GetLCDRows (), Font8x16, bLargeFont, bLargeFont); if (m_pST7789->Initialize()) { LOGDBG ("LCD: ST7789"); @@ -455,4 +455,4 @@ void CUserInterface::UISetMIDIButtonChannel (unsigned uCh) m_nMIDIButtonCh = CMIDIDevice::OmniMode; LOGNOTE("MIDI Button channel set to: OMNI"); } -} \ No newline at end of file +}