From 44eec2f863d9e5a647c22c9215cf57135a8e2881 Mon Sep 17 00:00:00 2001 From: Thibaut VIARD <thibaut.viard@atmel.com> Date: Tue, 14 Oct 2014 16:15:06 +0200 Subject: [PATCH] removing linker warning about PROGBITS --- cores/arduino/USB/samd21_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cores/arduino/USB/samd21_device.c b/cores/arduino/USB/samd21_device.c index 8ba091fe..82342405 100644 --- a/cores/arduino/USB/samd21_device.c +++ b/cores/arduino/USB/samd21_device.c @@ -34,8 +34,8 @@ extern "C"{ //#define TRACE_DEVICE(x) x #define TRACE_DEVICE(x) -__attribute__((__aligned__(4))) __attribute__((__section__(".bss_hram0"))) uint8_t udd_ep_out_cache_buffer[4][64]; -__attribute__((__aligned__(4))) __attribute__((__section__(".bss_hram0"))) uint8_t udd_ep_in_cache_buffer[4][128]; +__attribute__((__aligned__(4))) /*__attribute__((__section__(".bss_hram0")))*/ uint8_t udd_ep_out_cache_buffer[4][64]; +__attribute__((__aligned__(4))) /*__attribute__((__section__(".bss_hram0")))*/ uint8_t udd_ep_in_cache_buffer[4][128]; /** * USB SRAM data containing pipe descriptor table -- GitLab