diff options
author | Christian Starkjohann <cs+github@obdev.at> | 2012-12-05 23:07:22 +0100 |
---|---|---|
committer | Christian Starkjohann <cs+github@obdev.at> | 2012-12-05 23:07:22 +0100 |
commit | b6498a0104c637139035f08219cc2f39cb953e6d (patch) | |
tree | 13e7a89eeffd988c42d7d76cb808c94b87926d72 /examples | |
parent | 5e355a4f0588438632d56e2f9fef5a75b949bd24 (diff) | |
download | v-usb-b6498a0104c637139035f08219cc2f39cb953e6d.tar.gz v-usb-b6498a0104c637139035f08219cc2f39cb953e6d.tar.bz2 v-usb-b6498a0104c637139035f08219cc2f39cb953e6d.zip |
Add const keyword to all PROGMEM declarations as required by new gcc.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hid-custom-rq/firmware/main.c | 2 | ||||
-rw-r--r-- | examples/hid-data/firmware/main.c | 2 | ||||
-rw-r--r-- | examples/hid-mouse/firmware/main.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/hid-custom-rq/firmware/main.c b/examples/hid-custom-rq/firmware/main.c index e4ade7c..f0ec6cd 100644 --- a/examples/hid-custom-rq/firmware/main.c +++ b/examples/hid-custom-rq/firmware/main.c @@ -34,7 +34,7 @@ different port or bit, change the macros below: /* ----------------------------- USB interface ----------------------------- */ /* ------------------------------------------------------------------------- */ -PROGMEM char usbHidReportDescriptor[22] = { /* USB report descriptor */ +PROGMEM const char usbHidReportDescriptor[22] = { /* USB report descriptor */ 0x06, 0x00, 0xff, // USAGE_PAGE (Generic Desktop) 0x09, 0x01, // USAGE (Vendor Usage 1) 0xa1, 0x01, // COLLECTION (Application) diff --git a/examples/hid-data/firmware/main.c b/examples/hid-data/firmware/main.c index 7f05e76..b782aef 100644 --- a/examples/hid-data/firmware/main.c +++ b/examples/hid-data/firmware/main.c @@ -29,7 +29,7 @@ at least be connected to INT0 as well. /* ----------------------------- USB interface ----------------------------- */ /* ------------------------------------------------------------------------- */ -PROGMEM char usbHidReportDescriptor[22] = { /* USB report descriptor */ +PROGMEM const char usbHidReportDescriptor[22] = { /* USB report descriptor */ 0x06, 0x00, 0xff, // USAGE_PAGE (Generic Desktop) 0x09, 0x01, // USAGE (Vendor Usage 1) 0xa1, 0x01, // COLLECTION (Application) diff --git a/examples/hid-mouse/firmware/main.c b/examples/hid-mouse/firmware/main.c index 12c5bdb..86bb852 100644 --- a/examples/hid-mouse/firmware/main.c +++ b/examples/hid-mouse/firmware/main.c @@ -31,7 +31,7 @@ publish any hardware using these IDs! This is for demonstration only! /* ----------------------------- USB interface ----------------------------- */ /* ------------------------------------------------------------------------- */ -PROGMEM char usbHidReportDescriptor[52] = { /* USB report descriptor, size must match usbconfig.h */ +PROGMEM const char usbHidReportDescriptor[52] = { /* USB report descriptor, size must match usbconfig.h */ 0x05, 0x01, // USAGE_PAGE (Generic Desktop) 0x09, 0x02, // USAGE (Mouse) 0xa1, 0x01, // COLLECTION (Application) |