diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-01 02:13:42 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-01 02:14:08 +0300 |
commit | caa7334141e6d67ab6f3064b250e6729095ae56c (patch) | |
tree | 8100c9c8d828aa51a1a3f0bbbb958e9f5c549ff7 /stmhal/main.c | |
parent | e95b6b5e0761d8fa40cc31d62888e503812db72a (diff) |
stackctrl: Add "mp_" prefix.
Diffstat (limited to 'stmhal/main.c')
-rw-r--r-- | stmhal/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/main.c b/stmhal/main.c index 0cad768ad..0e260e18c 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -188,7 +188,7 @@ int main(void) { // Stack limit should be less than real stack size, so we // had chance to recover from limit hit. - stack_set_limit(&_ram_end - &_heap_end - 512); + mp_stack_set_limit(&_ram_end - &_heap_end - 512); /* STM32F4xx HAL library initialization: - Configure the Flash prefetch, instruction and Data caches |