Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set USB Gadget name and device ID #593

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ "${USB_VID}" ] ; then
OPTIONS="${OPTIONS} -o USB_GADGET_VENDOR_ID=${USB_VID}"
fi
if [ "${USB_DID}" ] ; then
OPTIONS="${OPTIONS} -o USB_GADGET_DEVICE_ID=${USB_DID}"
OPTIONS="${OPTIONS} -o USB_GADGET_DEVICE_ID_BASE=${USB_DID}"
fi

# Build circle-stdlib library
Expand Down
4 changes: 2 additions & 2 deletions src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <circle/synchronize.h>
#include <assert.h>
#include <circle/usb/usbhcidevice.h>
#include <circle/usb/gadget/usbmidigadget.h>
#include "usbminidexedmidigadget.h"

LOGMODULE ("kernel");

Expand Down Expand Up @@ -69,7 +69,7 @@ bool CKernel::Initialize (void)
if (m_Config.GetUSBGadgetMode())
{
// Run the USB stack in USB Gadget (device) mode
m_pUSB = new CUSBMIDIGadget (&mInterrupt);
m_pUSB = new CUSBMiniDexedMIDIGadget (&mInterrupt);
}
else
{
Expand Down
86 changes: 86 additions & 0 deletions src/usbminidexedmidigadget.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
//
// usbminidexedmidigadget.h
//
// MiniDexed - Dexed FM synthesizer for bare metal Raspberry Pi
// Copyright (C) 2022 The MiniDexed Team
//
// Based on circle/usb/gadget/usbmidigadget.h
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#ifndef _usbminidexedmidigadget_h
#define _usbminidexedmidigadget_h

#include <circle/usb/gadget/usbmidigadget.h>
#include <circle/usb/gadget/usbmidigadgetendpoint.h>
#include <circle/sysconfig.h>
#include <assert.h>

class CUSBMiniDexedMIDIGadget : public CUSBMIDIGadget
{
private:
#define MDSTRINGDESCRIPTORS 3
const char *const s_MiniDexedStringDescriptor[MDSTRINGDESCRIPTORS] =
{
"\x04\x03\x09\x04", // Language ID
"probonopd",
"MiniDexed"
};

public:
CUSBMiniDexedMIDIGadget (CInterruptSystem *pInterruptSystem)
: CUSBMIDIGadget (pInterruptSystem)
{
}

~CUSBMiniDexedMIDIGadget (void)
{
assert(0);
}

protected:
// Override GetDescriptor frmo CUSBMIDIGadget.
// See CUSBMIDIGadget for details.
// This will only act on the DESCRIPOR_STRING.
// All other descriptors are returned from USBMIDIGadget.
//
const void *GetDescriptor (u16 wValue, u16 wIndex, size_t *pLength) override
{
assert (pLength);

u8 uchDescIndex = wValue & 0xFF;

switch (wValue >> 8)
{
case DESCRIPTOR_STRING:
if (!uchDescIndex)
{
*pLength = (u8) s_MiniDexedStringDescriptor[0][0];
return s_MiniDexedStringDescriptor[0];
}
else if (uchDescIndex < MDSTRINGDESCRIPTORS)
{
return CUSBMIDIGadget::ToStringDescriptor (s_MiniDexedStringDescriptor[uchDescIndex], pLength);
}
break;

default:
break;
}

return CUSBMIDIGadget::GetDescriptor(wValue, wIndex, pLength);
}
};

#endif
Loading