diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-05-15 16:22:33 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-05-15 16:22:33 -0700 |
| commit | 3c1469b0a507c104e6623290a20f13081e6a52a6 (patch) | |
| tree | 09e29fb00ac289c40f3fca77021e6bd4ac7fb28c /ports/stm/supervisor | |
| parent | 6aaab005c5f3a781fec229640c74bf44a601fc97 (diff) | |
Add port_fixed_stack for more builds
Diffstat (limited to 'ports/stm/supervisor')
| -rw-r--r-- | ports/stm/supervisor/port.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ports/stm/supervisor/port.c b/ports/stm/supervisor/port.c index 23ba7d874..9b62fa2eb 100644 --- a/ports/stm/supervisor/port.c +++ b/ports/stm/supervisor/port.c @@ -176,7 +176,7 @@ safe_mode_t port_init(void) { uint32_t tickstart = HAL_GetTick(); // H7/F7 untested with LSE, so autofail them until above move is done - #if (CPY_STM32F4) + #if (CPY_STM32F4) bool lse_setupsuccess = true; #else bool lse_setupsuccess = false; @@ -281,6 +281,10 @@ uint32_t *port_heap_get_top(void) { return &_ld_heap_end; } +supervisor_allocation* port_fixed_stack(void) { + return NULL; +} + uint32_t *port_stack_get_limit(void) { return &_ld_stack_bottom; } |
