mirror of https://github.com/tinygo-org/tinygo.git
Nikolas Sepos
5 years ago
committed by
Ayke
4 changed files with 19 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||||
|
{ |
||||
|
"build-tags": ["softdevice", "s140v7"], |
||||
|
"linkerscript": "targets/nrf52840-s140v7.ld" |
||||
|
} |
@ -0,0 +1,10 @@ |
|||||
|
|
||||
|
MEMORY |
||||
|
{ |
||||
|
FLASH_TEXT (rw) : ORIGIN = 0x00000000 + 0x00027000, LENGTH = 1M - 0x00027000 |
||||
|
RAM (xrw) : ORIGIN = 0x20000000 + 0x000039c0, LENGTH = 256K - 0x000039c0 |
||||
|
} |
||||
|
|
||||
|
_stack_size = 4K; |
||||
|
|
||||
|
INCLUDE "targets/arm.ld" |
@ -0,0 +1,3 @@ |
|||||
|
{ |
||||
|
"inherits": ["pca10056", "nrf52840-s140v7"] |
||||
|
} |
Loading…
Reference in new issue