8000 Merge pull request #2866 from hierophect/stm32-lsetimeout · mubes/circuitpython@4937d5f · GitHub
[go: up one dir, main page]

Skip to content

Commit 4937d5f

Browse files
authored
Merge pull request adafruit#2866 from hierophect/stm32-lsetimeout
STM32: Fix LSE hang at startup
2 parents 1b0c52c + 94949fb commit 4937d5f

14 files changed

+73
-27
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 er 8000 ror 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
_minim 8D66 um_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