Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
92492421
Commit
92492421
authored
Aug 12, 2015
by
Daniel Campora
Browse files
cc3200: Remove unneeded loops in the FreeRTOS hooks.
parent
641a3d39
Changes
1
Hide whitespace changes
Inline
Side-by-side
cc3200/misc/FreeRTOSHooks.c
View file @
92492421
...
...
@@ -70,10 +70,7 @@ void vApplicationMallocFailedHook (void)
__asm
volatile
(
"bkpt #0
\n
"
);
#endif
for
(
;
;
)
{
__fatal_error
(
"FreeRTOS malloc failed!"
);
}
__fatal_error
(
"FreeRTOS malloc failed!"
);
}
//*****************************************************************************
...
...
@@ -92,10 +89,7 @@ void vApplicationStackOverflowHook (OsiTaskHandle *pxTask, signed char *pcTaskNa
__asm
volatile
(
"bkpt #0
\n
"
);
#endif
for
(
;
;
)
{
__fatal_error
(
"Stack overflow!"
);
}
__fatal_error
(
"Stack overflow!"
);
}
//*****************************************************************************
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment