Skip to content

Commit 5e7aa6e

Browse files
committed
Fix formatting check
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
1 parent f2fecf6 commit 5e7aa6e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

examples/template_configuration/FreeRTOSConfig.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,13 +415,16 @@
415415
* number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__
416416
* )" or it can simple disable interrupts and sit in a loop to halt all
417417
* execution on the failing line for viewing in a debugger. */
418+
419+
/* *INDENT-OFF* */
418420
#define configASSERT( x ) \
419421
if( ( x ) == 0 ) \
420422
{ \
421423
taskDISABLE_INTERRUPTS(); \
422424
for( ; ; ) \
423425
; \
424426
}
427+
/* *INDENT-ON* */
425428

426429
/******************************************************************************/
427430
/* FreeRTOS MPU specific definitions. *****************************************/

include/croutine.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,10 @@ void vCoRoutineSchedule( void );
246246
* \defgroup crSTART crSTART
247247
* \ingroup Tasks
248248
*/
249+
250+
/* *INDENT-OFF* */
249251
#define crEND() }
252+
/* *INDENT-ON* */
250253

251254
/*
252255
* These macros are intended for internal use by the co-routine implementation

0 commit comments

Comments
 (0)