Skip to content

Commit 3cb94d3

Browse files
committed
Reduced default stack size for lpc175x chips
1 parent ae943fb commit 3cb94d3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

targets/chip/lpc1754/linkerscript.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ OUTPUT_ARCH(arm);
1010
/*
1111
The stack size used by the application. NOTE: you need to adjust according to your application.
1212
*/
13-
STACK_SIZE = 0x4000;
13+
STACK_SIZE = 0x2000;
1414

1515
/*
1616
Memories definitions

targets/chip/lpc1756/linkerscript.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ OUTPUT_ARCH(arm);
1010
/*
1111
The stack size used by the application. NOTE: you need to adjust according to your application.
1212
*/
13-
STACK_SIZE = 0x4000;
13+
STACK_SIZE = 0x2000;
1414

1515
/*
1616
Memories definitions

targets/chip/lpc1759/linkerscript.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ OUTPUT_ARCH(arm);
1010
/*
1111
The stack size used by the application. NOTE: you need to adjust according to your application.
1212
*/
13-
STACK_SIZE = 0x4000;
13+
STACK_SIZE = 0x2000;
1414

1515
/*
1616
Memories definitions

0 commit comments

Comments
 (0)