We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d145bb commit 9e6c1beCopy full SHA for 9e6c1be
config/examples/nrf5340.config
@@ -1,5 +1,5 @@
1
ARCH?=ARM
2
-TZEN?=1
+TZEN?=0
3
TARGET?=nrf5340
4
SIGN?=ECC256
5
HASH?=SHA256
hal/nrf5340.h
@@ -22,6 +22,10 @@
22
#ifndef _HAL_NRF5340_H_
23
#define _HAL_NRF5340_H_
24
25
+#ifndef TZEN
26
+#define TZEN
27
+#endif
28
+
29
#define CPU_CLOCK 128000000UL /* 128MHz */
30
31
/* Assembly helpers */
hal/nrf5340.ld
@@ -1,7 +1,7 @@
MEMORY
{
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = @BOOTLOADER_PARTITION_SIZE@
- RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 512K
+ RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
}
6
7
SECTIONS
0 commit comments