We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b5970 commit 56df064Copy full SHA for 56df064
.travis.yml
@@ -15,4 +15,4 @@ matrix:
15
fast_finish: true
16
script:
17
- rustup target add thumbv6m-none-eabi
18
- - cargo build --features=$MCU --examples
+ - cargo build --features=$MCU --examples --release
memory.x
@@ -1,8 +1,8 @@
1
MEMORY
2
{
3
/* NOTE K = KiBi = 1024 bytes */
4
- FLASH : ORIGIN = 0x08000000, LENGTH = 32K
5
- RAM : ORIGIN = 0x20000000, LENGTH = 6K
+ FLASH : ORIGIN = 0x08000000, LENGTH = 16K
+ RAM : ORIGIN = 0x20000000, LENGTH = 4K
6
}
7
8
/* This is where the call stack will be allocated. */
0 commit comments