Created and tested optimised build configuration for the XMC4500 demo.

This commit is contained in:
Richard Barry 2012-04-06 19:47:30 +00:00
parent 6aa07ed919
commit a3b4008eae
5 changed files with 73 additions and 5 deletions

View file

@ -137,7 +137,7 @@ to all Cortex-M ports, and do not rely on any particular library functions. */
/* Normal assert() semantics without relying on the provision of an assert.h
header file. */
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ) __asm volatile( "NOP" ); }
#endif /* FREERTOS_CONFIG_H */