54
54
* number of device configurations. The descriptor is read out by the USB host when the enumeration
55
55
* process begins.
56
56
*/
57
- USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
57
+ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
58
58
{
59
59
.Header = {.Size = sizeof (USB_Descriptor_Device_t ), .Type = DTYPE_Device },
60
60
@@ -82,7 +82,7 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
82
82
* and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting
83
83
* a configuration so that the host may correctly communicate with the USB device.
84
84
*/
85
- USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
85
+ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
86
86
{
87
87
.Config =
88
88
{
@@ -190,7 +190,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
190
190
* the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate
191
191
* via the language ID table available at USB.org what languages the device supports for its string descriptors.
192
192
*/
193
- USB_Descriptor_String_t PROGMEM LanguageString =
193
+ const USB_Descriptor_String_t PROGMEM LanguageString =
194
194
{
195
195
.Header = {.Size = USB_STRING_LEN (1 ), .Type = DTYPE_String },
196
196
@@ -201,7 +201,7 @@ USB_Descriptor_String_t PROGMEM LanguageString =
201
201
* form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
202
202
* Descriptor.
203
203
*/
204
- USB_Descriptor_String_t PROGMEM ManufacturerString =
204
+ const USB_Descriptor_String_t PROGMEM ManufacturerString =
205
205
{
206
206
.Header = {.Size = USB_STRING_LEN (24 ), .Type = DTYPE_String },
207
207
@@ -212,7 +212,7 @@ USB_Descriptor_String_t PROGMEM ManufacturerString =
212
212
* and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
213
213
* Descriptor.
214
214
*/
215
- USB_Descriptor_String_t PROGMEM ProductString =
215
+ const USB_Descriptor_String_t PROGMEM ProductString =
216
216
{
217
217
#if (ARDUINO_MODEL_PID == ARDUINO_UNO_PID )
218
218
.Header = {.Size = USB_STRING_LEN (11 ), .Type = DTYPE_String },
0 commit comments