Skip to content

Commit

Permalink
Use the largest available flash& ram size
Browse files Browse the repository at this point in the history
Currently stm32f030xc
  • Loading branch information
david-sawatzke committed Dec 18, 2018
1 parent b1b5970 commit 63ffca9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions memory.x
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
MEMORY
{
/* NOTE K = KiBi = 1024 bytes */
FLASH : ORIGIN = 0x08000000, LENGTH = 32K
RAM : ORIGIN = 0x20000000, LENGTH = 6K
FLASH : ORIGIN = 0x08000000, LENGTH = 256K
RAM : ORIGIN = 0x20000000, LENGTH = 32K
}

/* This is where the call stack will be allocated. */
Expand Down

0 comments on commit 63ffca9

Please sign in to comment.