diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-27 00:04:27 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-27 00:04:27 +0100 |
commit | 30306a42972f6a414e8b23e7942fd77f74af80db (patch) | |
tree | af2e4d41c44af061e1e0b0069ec92e7107499e79 /arch/arm | |
parent | 369a614802c835510bf20ab2b2aa3ce35050c020 (diff) |
Adding the osdebug mechanism into arch and FreeRTOS, essentially closing the circle of dependancy between all 3 libraries. Also, turning the debugging on by default.
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/lpc17xx/hooks.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/arch/arm/lpc17xx/hooks.c b/arch/arm/lpc17xx/hooks.c index 8230d15..5aeb335 100644 --- a/arch/arm/lpc17xx/hooks.c +++ b/arch/arm/lpc17xx/hooks.c @@ -1,7 +1,19 @@ #include "FreeRTOS.h" #include "task.h" +#include "osdebug.h" -void vConfigureTimerForRunTimeStats() { } -void vApplicationTickHook() { } -void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName ) { } -void vApplicationIdleHook() { } +void vConfigureTimerForRunTimeStats() { + DBGOUT("vConfigureTimerForRunTimeStats()\r\n"); +} + +void vApplicationTickHook() { + DBGOUT("vApplicationTickHook()\r\n"); +} + +void vApplicationStackOverflowHook(xTaskHandle *pxTask, signed portCHAR *pcTaskName) { + DBGOUT("vApplicationStackOverflowHook(%p, %s)\r\n", pxTask, pcTaskName); +} + +void vApplicationIdleHook() { + DBGOUT("vApplicationIdleHook()\r\n"); +} |