Skip to content

Commit

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

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

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

0 comments on commit fad10ba

Please sign in to comment.