Skip to content

Commit

Permalink
do {} while update
Browse files Browse the repository at this point in the history
  • Loading branch information
moninom1 committed Dec 5, 2023
1 parent fad10ba commit a7995c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/include/FreeRTOSIPConfigDefaults.h
Original file line number Diff line number Diff line change
Expand Up @@ -3066,8 +3066,8 @@
#endif

#ifndef FreeRTOS_debug_printf
#if ( ( ipconfigHAS_DEBUG_PRINTF == 1 ) )//&& defined( configPRINTF ) )
#define FreeRTOS_debug_printf( MSG ) do { configPRINTF( MSG ); } while( ipFALSE_BOOL )
#if ( ( ipconfigHAS_DEBUG_PRINTF == 1 ) && defined( configPRINTF ) )
#define FreeRTOS_debug_printf( MSG ) do {} while( ipFALSE_BOOL )//do { configPRINTF( MSG ); } while( ipFALSE_BOOL )
#else
#define FreeRTOS_debug_printf( MSG ) do {} while( ipFALSE_BOOL )
#endif
Expand Down Expand Up @@ -3102,8 +3102,8 @@
#endif

#ifndef FreeRTOS_printf
#if ( ( ipconfigHAS_PRINTF == 1 ) )// && defined( configPRINTF ) )
#define FreeRTOS_printf( MSG ) do { configPRINTF( MSG ); } while( ipFALSE_BOOL )
#if ( ( ipconfigHAS_PRINTF == 1 ) && defined( configPRINTF ) )
#define FreeRTOS_printf( MSG ) do {} while( ipFALSE_BOOL )//do { configPRINTF( MSG ); } while( ipFALSE_BOOL )
#else
#define FreeRTOS_printf( MSG ) do {} while( ipFALSE_BOOL )
#endif
Expand Down

0 comments on commit a7995c2

Please sign in to comment.