Skip to content

Commit 44eec2f

Browse files
committed
removing linker warning about PROGBITS
1 parent 6187c07 commit 44eec2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cores/arduino/USB/samd21_device.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ extern "C"{
3434
//#define TRACE_DEVICE(x) x
3535
#define TRACE_DEVICE(x)
3636

37-
__attribute__((__aligned__(4))) __attribute__((__section__(".bss_hram0"))) uint8_t udd_ep_out_cache_buffer[4][64];
38-
__attribute__((__aligned__(4))) __attribute__((__section__(".bss_hram0"))) uint8_t udd_ep_in_cache_buffer[4][128];
37+
__attribute__((__aligned__(4))) /*__attribute__((__section__(".bss_hram0")))*/ uint8_t udd_ep_out_cache_buffer[4][64];
38+
__attribute__((__aligned__(4))) /*__attribute__((__section__(".bss_hram0")))*/ uint8_t udd_ep_in_cache_buffer[4][128];
3939

4040
/**
4141
* USB SRAM data containing pipe descriptor table

0 commit comments

Comments
 (0)