8000 Add recovery domain write access, adjust stack · mubes/circuitpython@94949fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 94949fb

Browse files
committed
Add recovery domain write access, adjust stack
1 parent 248704b commit 94949fb

14 files changed

+54
-22
lines changed

ports/stm/boards/STM32F401xd_fs.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MEMORY
1313
}
1414

1515
/* produce a link error if there is not this amount of RAM for these sections */
16-
_minimum_stack_size = 2K;
16+
_minimum_stack_size = 24K;
1717
_minimum_heap_size = 16K;
1818

1919
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F401xe_boot.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ MEMORY
1212
}
1313

1414
/* produce a link error if there is not this amount of RAM for these sections */
15-
_minimum_stack_size = 2K;
15+
_minimum_stack_size = 24K;
1616
_minimum_heap_size = 16K;
1717

1818
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F401xe_fs.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MEMORY
1313
}
1414

1515
/* produce a link error if there is not this amount of RAM for these sections */
16-
_minimum_stack_size = 2K;
16+
_minimum_stack_size = 24K;
1717
_minimum_heap_size = 16K;
1818

1919
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F405_boot.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MEMORY
1313
}
1414

1515
/* produce a link error if there is not this amount of RAM for these sections */
16-
_minimum_stack_size = 2K;
16+
_minimum_stack_size = 24K;
1717
_minimum_heap_size = 16K;
1818

1919
/* Define the top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F405_default.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MEMORY
1313
}
1414

1515
/* produce a link error if there is not this amount of RAM for these sections */
16-
_minimum_stack_size = 2K;
16+
_minimum_stack_size = 24K;
1717
_minimum_heap_size = 16K;
1818

1919
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F405_fs.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MEMORY
1414
}
1515

1616
/* produce a link error if there is not this amount of RAM for these sections */
17-
_minimum_stack_size = 2K;
17+
_minimum_stack_size = 24K;
1818
_minimum_heap_size = 16K;
1919

2020
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F407_fs.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MEMORY
1414
}
1515

1616
/* produce a link error if there is not this amount of RAM for these sections */
17-
_minimum_stack_size = 2K;
17+
_minimum_stack_size = 24K;
1818
_minimum_heap_size = 16K;
1919

2020
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F411_fs.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MEMORY
1313
}
1414

1515
/* produce a link error if there is not this amount of RAM for these sections */
16-
_minimum_stack_size = 2K;
16+
_minimum_stack_size = 24K;
1717
_minimum_heap_size = 16K;
1818

1919
/* Define tho top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F411_nvm.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MEMORY
1414
}
1515

1616
/* produce a link error if there is not this amount of RAM for these sections */
17-
_minimum_stack_size = 2K;
17+
_minimum_stack_size = 24K;
1818
_minimum_heap_size = 16K;
1919

2020
/* Define the top end of the stack. The stack is full descending so begins just

ports/stm/boards/STM32F412_fs.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MEMORY
1313
}
1414

1515
/* produce a link error if there is not this amount of RAM for these sections */
16-
_minimum_stack_size = 2K;
16+
_minimum_stack_size = 24K;
1717
_minimum_heap_size = 16K;
1818

1919
/* Define tho top end of the stack. The stack is full descending so begins just

0 commit comments

Comments
 (0)
0