Initial RZ/T port and demo - work in progress, currently only the tick interrupt can be installed.

This commit is contained in:
Richard Barry 2015-09-07 17:29:14 +00:00
parent 717654471e
commit 28d8a27f8f
72 changed files with 56076 additions and 4 deletions

View file

@ -147,7 +147,7 @@
\
\
/* Has the extremity of the task stack ever been written over? */ \
if( memcmp( ( void * ) pxCurrentTCB->pxStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \
if( memcmp( ( const void * ) pxCurrentTCB->pxStack, ( const void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \
{ \
vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \
} \