File tree 2 files changed +6
-0
lines changed
examples/template_configuration
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 415
415
* number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__
416
416
* )" or it can simple disable interrupts and sit in a loop to halt all
417
417
* execution on the failing line for viewing in a debugger. */
418
+
419
+ /* *INDENT-OFF* */
418
420
#define configASSERT ( x ) \
419
421
if( ( x ) == 0 ) \
420
422
{ \
421
423
taskDISABLE_INTERRUPTS(); \
422
424
for( ; ; ) \
423
425
; \
424
426
}
427
+ /* *INDENT-ON* */
425
428
426
429
/******************************************************************************/
427
430
/* FreeRTOS MPU specific definitions. *****************************************/
Original file line number Diff line number Diff line change @@ -246,7 +246,10 @@ void vCoRoutineSchedule( void );
246
246
* \defgroup crSTART crSTART
247
247
* \ingroup Tasks
248
248
*/
249
+
250
+ /* *INDENT-OFF* */
249
251
#define crEND () }
252
+ /* *INDENT-ON* */
250
253
251
254
/*
252
255
* These macros are intended for internal use by the co-routine implementation
You can’t perform that action at this time.
0 commit comments