aboutsummaryrefslogtreecommitdiff
path: root/protocol/vusb/usbdrv/usbdrv.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/vusb/usbdrv/usbdrv.h')
-rw-r--r--protocol/vusb/usbdrv/usbdrv.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/protocol/vusb/usbdrv/usbdrv.h b/protocol/vusb/usbdrv/usbdrv.h
index 3a78f307b..42fe16372 100644
--- a/protocol/vusb/usbdrv/usbdrv.h
+++ b/protocol/vusb/usbdrv/usbdrv.h
@@ -452,43 +452,43 @@ extern
452#if !(USB_CFG_DESCR_PROPS_DEVICE & USB_PROP_IS_RAM) 452#if !(USB_CFG_DESCR_PROPS_DEVICE & USB_PROP_IS_RAM)
453PROGMEM 453PROGMEM
454#endif 454#endif
455char usbDescriptorDevice[]; 455const char usbDescriptorDevice[];
456 456
457extern 457extern
458#if !(USB_CFG_DESCR_PROPS_CONFIGURATION & USB_PROP_IS_RAM) 458#if !(USB_CFG_DESCR_PROPS_CONFIGURATION & USB_PROP_IS_RAM)
459PROGMEM 459PROGMEM
460#endif 460#endif
461char usbDescriptorConfiguration[]; 461const char usbDescriptorConfiguration[];
462 462
463extern 463extern
464#if !(USB_CFG_DESCR_PROPS_HID_REPORT & USB_PROP_IS_RAM) 464#if !(USB_CFG_DESCR_PROPS_HID_REPORT & USB_PROP_IS_RAM)
465PROGMEM 465PROGMEM
466#endif 466#endif
467char usbDescriptorHidReport[]; 467const char usbDescriptorHidReport[];
468 468
469extern 469extern
470#if !(USB_CFG_DESCR_PROPS_STRING_0 & USB_PROP_IS_RAM) 470#if !(USB_CFG_DESCR_PROPS_STRING_0 & USB_PROP_IS_RAM)
471PROGMEM 471PROGMEM
472#endif 472#endif
473char usbDescriptorString0[]; 473const char usbDescriptorString0[];
474 474
475extern 475extern
476#if !(USB_CFG_DESCR_PROPS_STRING_VENDOR & USB_PROP_IS_RAM) 476#if !(USB_CFG_DESCR_PROPS_STRING_VENDOR & USB_PROP_IS_RAM)
477PROGMEM 477PROGMEM
478#endif 478#endif
479int usbDescriptorStringVendor[]; 479const int usbDescriptorStringVendor[];
480 480
481extern 481extern
482#if !(USB_CFG_DESCR_PROPS_STRING_PRODUCT & USB_PROP_IS_RAM) 482#if !(USB_CFG_DESCR_PROPS_STRING_PRODUCT & USB_PROP_IS_RAM)
483PROGMEM 483PROGMEM
484#endif 484#endif
485int usbDescriptorStringDevice[]; 485const int usbDescriptorStringDevice[];
486 486
487extern 487extern
488#if !(USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER & USB_PROP_IS_RAM) 488#if !(USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER & USB_PROP_IS_RAM)
489PROGMEM 489PROGMEM
490#endif 490#endif
491int usbDescriptorStringSerialNumber[]; 491const int usbDescriptorStringSerialNumber[];
492 492
493#endif /* __ASSEMBLER__ */ 493#endif /* __ASSEMBLER__ */
494 494