Changeset d604513 in avrstuff for grip2hid/Descriptors.c


Ignore:
Timestamp:
Oct 27, 2021, 5:31:45 PM (3 years ago)
Author:
Adrien Destugues <pulkomandy@…>
Branches:
main
Children:
a0da9c8
Parents:
62f4d54
git-author:
Adrien Destugues <pulkomandy@…> (27/10/2021 17:29:44)
git-committer:
Adrien Destugues <pulkomandy@…> (27/10/2021 17:31:45)
Message:

Adjust software to the production PCB

  • Use the right MCU, port, etc.
  • Change USB IDs to V-USB shared one for USB Joysticks
  • Set vendor and product descriptions
  • Add makefile rule to program the AVR fuses
File:
1 edited

Legend:

Unmodified
Added
Removed
  • grip2hid/Descriptors.c

    r62f4d54 rd604513  
    331331        .Endpoint0Size          = FIXED_CONTROL_ENDPOINT_SIZE,
    332332
    333         .VendorID               = 0x03EB,
    334         .ProductID              = 0x2043,
     333        .VendorID               = 0x16c0,
     334        .ProductID              = 0x27dc,
    335335        .ReleaseNumber          = VERSION_BCD(0,0,1),
    336336
     
    412412 *  Descriptor.
    413413 */
    414 const USB_Descriptor_String_t PROGMEM ManufacturerString = USB_STRING_DESCRIPTOR(L"LUFA Library");
     414const USB_Descriptor_String_t PROGMEM ManufacturerString = USB_STRING_DESCRIPTOR(L"PulkoTronics");
    415415
    416416/** Product descriptor string. This is a Unicode string containing the product's details in human readable form,
     
    418418 *  Descriptor.
    419419 */
    420 const USB_Descriptor_String_t PROGMEM ProductString = USB_STRING_DESCRIPTOR(L"LUFA Joystick Demo");
     420const USB_Descriptor_String_t PROGMEM ProductString = USB_STRING_DESCRIPTOR(L"Gravis GrIP gamepads");
    421421
    422422/** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors"
Note: See TracChangeset for help on using the changeset viewer.