We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71a557 commit e534f46Copy full SHA for e534f46
sample_configuration/FreeRTOSConfig.h
@@ -301,13 +301,13 @@
301
* number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__ )"
302
* or it can simple disable interrupts and sit in a loop to halt all execution
303
* on the failing line for viewing in a debugger. */
304
-#define configASSERT( x ) \
305
- if( ( x ) == 0 ) \
306
- { \
307
- taskDISABLE_INTERRUPTS(); \
308
- for( ;; ) \
309
- ; \
310
- }
+#define configASSERT( x ) \
+ if( ( x ) == 0 ) \
+ { \
+ taskDISABLE_INTERRUPTS(); \
+ for( ; ; ) \
+ ; \
+ }
311
312
/******************************************************************************/
313
/* Cortex-M MPU specific definitions. *****************************************/
0 commit comments