Skip to content

Commit

Permalink
put NOLOAD on persistent data section
Browse files Browse the repository at this point in the history
Former-commit-id: 0726be6
  • Loading branch information
Keith Vogel authored and Keith Vogel committed Aug 16, 2012
1 parent 857b00a commit 998c1cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hardware/pic32/cores/pic32/chipKIT-application-COMMON.ld
Expand Up @@ -538,14 +538,14 @@ SECTIONS
. += (DEFINED (_DEBUGGER) ? 0x200 : 0x0);
} >kseg1_data_mem

.ram_exchange_data :
.ram_exchange_data (NOLOAD) :
{
_ram_header_addr = . ;
. += 8 ;
} >kseg1_data_mem

/* Persistent data */
.persist ALIGN(4) :
.persist ALIGN(4) (NOLOAD) :
{
_persist_begin = .;
*(.persist .persist.*)
Expand Down

0 comments on commit 998c1cf

Please sign in to comment.