Try USBGadgetPin (#670)

* Try USBGadgetPin

* CGPIOPin usbGadgetPin(usbGadgetPinNumber, GPIOModeInputPullUp);

* Remove extraneous line
pull/673/head
probonopd 4 months ago committed by GitHub
parent 98b5274cf3
commit 75e82caf72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      src/config.cpp

@ -22,6 +22,7 @@
// //
#include "config.h" #include "config.h"
#include "../Synth_Dexed/src/dexed.h" #include "../Synth_Dexed/src/dexed.h"
#include <circle/gpiopin.h>
CConfig::CConfig (FATFS *pFileSystem) CConfig::CConfig (FATFS *pFileSystem)
: m_Properties ("minidexed.ini", pFileSystem) : m_Properties ("minidexed.ini", pFileSystem)
@ -37,6 +38,13 @@ void CConfig::Load (void)
m_Properties.Load (); m_Properties.Load ();
m_bUSBGadgetMode = m_Properties.GetNumber ("USBGadget", 0) != 0; m_bUSBGadgetMode = m_Properties.GetNumber ("USBGadget", 0) != 0;
unsigned usbGadgetPinNumber = m_Properties.GetNumber ("USBGadgetPin", 26); // Default to GPIO pin 26 if not specified
CGPIOPin usbGadgetPin(usbGadgetPinNumber, GPIOModeInputPullUp);
if (usbGadgetPin.Read() == 0) // If the pin is pulled down
{
m_bUSBGadgetMode = true;
}
m_SoundDevice = m_Properties.GetString ("SoundDevice", "pwm"); m_SoundDevice = m_Properties.GetString ("SoundDevice", "pwm");

Loading…
Cancel
Save