19 lines
543 B
Plaintext
19 lines
543 B
Plaintext
|
|
/*
|
|
* Memory size settings file for the native lib
|
|
* This file is used to set the nativelib memory sizes for the debug environment
|
|
* Attention: values need to be 16 byte aligned !
|
|
*/
|
|
|
|
/* SecureBox Workspace size (located in FRAM)*/
|
|
secureBoxWorkSpaceSize = 0x780;
|
|
|
|
/* SecureBox Stack size (located in FRAM) */
|
|
secureBoxStackSize = 0x100;
|
|
|
|
/* SecureBox Transient State size (located in T-Heap)*/
|
|
secureBoxTransienStateSize = 0x100;
|
|
|
|
/* SecureBox Persistent State size (located in P-Heap)*/
|
|
secureBoxPersistentStateSize = 0x00;
|
|
|