Update compiler version and add configASSERT() to PIC32 MPLAB X project.

This commit is contained in:
Richard Barry 2013-07-12 19:21:10 +00:00
parent ad8fa53043
commit 25310a6796
9 changed files with 103 additions and 83 deletions

View file

@ -135,6 +135,12 @@ to exclude the API function. */
#define INCLUDE_vTaskDelay 1
#define INCLUDE_uxTaskGetStackHighWaterMark 1
/* Prevent C specific syntax being included in assembly files. */
#ifndef __LANGUAGE_ASSEMBLY
void vAssertCalled( const char *pcFileName, unsigned long ulLine );
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ )
#endif
/* The priority at which the tick interrupt runs. This should probably be
kept at 1. */
#define configKERNEL_INTERRUPT_PRIORITY 0x01