From dcbd04c831b0b70ea79a7b98c0fbfbd17559e912 Mon Sep 17 00:00:00 2001 From: Kevin <68612569+diyelectromusic@users.noreply.github.com> Date: Thu, 25 Aug 2022 18:58:25 +0100 Subject: [PATCH 1/2] Add call to set Serial options to prevent CR to CRLF conversion (#311) Co-authored-by: probonopd --- src/serialmididevice.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/serialmididevice.cpp b/src/serialmididevice.cpp index cdb5153..5978ecc 100644 --- a/src/serialmididevice.cpp +++ b/src/serialmididevice.cpp @@ -49,7 +49,12 @@ CSerialMIDIDevice::~CSerialMIDIDevice (void) boolean CSerialMIDIDevice::Initialize (void) { assert (m_pConfig); - return m_Serial.Initialize (m_pConfig->GetMIDIBaudRate ()); + boolean res = m_Serial.Initialize (m_pConfig->GetMIDIBaudRate ()); + unsigned ser_options = m_Serial.GetOptions(); + // Ensure CR->CRLF translation is disabled for MIDI links + ser_options &= ~(SERIAL_OPTION_ONLCR); + m_Serial.SetOptions(ser_options); + return res; } void CSerialMIDIDevice::Process (void) From d53aeb40f505101eb7545fa6ac925d6a0b4bc038 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 24 Sep 2022 15:22:37 +0200 Subject: [PATCH 2/2] Update Circle to test MIDI controllers using the USB MIDI Class 2.0 spec https://github.com/rsta2/circle/issues/316#issuecomment-1256964271 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ef8d1be..1e99ac0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: run: | set -ex cd circle-stdlib/libs/circle - git checkout a8e8c9f # develop + git checkout 646c362 # develop cd - - name: Install toolchains run: |