diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-07-05 10:27:50 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-07-05 10:28:18 -0400 |
commit | 385d4030035dbaf41591309dbde47653bd03841b (patch) | |
tree | e156c2d6b27f01db6985f2cc560c9c345d48fdac /Bootloaders/DFU/Descriptors.c | |
parent | 2cde257fe11886bebbfe4aea816268c2739d89bb (diff) | |
download | lufa-385d4030035dbaf41591309dbde47653bd03841b.tar.gz lufa-385d4030035dbaf41591309dbde47653bd03841b.tar.bz2 lufa-385d4030035dbaf41591309dbde47653bd03841b.zip |
adds QMK board with definable LEDs and matrix scan
Diffstat (limited to 'Bootloaders/DFU/Descriptors.c')
-rw-r--r-- | Bootloaders/DFU/Descriptors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/DFU/Descriptors.c b/Bootloaders/DFU/Descriptors.c index f7fe1cbb4..6b7b6d490 100644 --- a/Bootloaders/DFU/Descriptors.c +++ b/Bootloaders/DFU/Descriptors.c @@ -125,13 +125,13 @@ const USB_Descriptor_String_t LanguageString = USB_STRING_DESCRIPTOR_ARRAY(LANGU * form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device * Descriptor. */ -const USB_Descriptor_String_t ManufacturerString = USB_STRING_DESCRIPTOR(L"Dean Camera"); +const USB_Descriptor_String_t ManufacturerString = USB_STRING_DESCRIPTOR(L"QMK"); /** Product descriptor string. This is a Unicode string containing the product's details in human readable form, * and is read out upon request by the host when the appropriate string ID is requested, listed in the Device * Descriptor. */ -const USB_Descriptor_String_t ProductString = USB_STRING_DESCRIPTOR(L"LUFA DFU"); +const USB_Descriptor_String_t ProductString = USB_STRING_DESCRIPTOR(L"KB"); /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors" * documentation) by the application code so that the address and size of a requested descriptor can be given |