Skip to content

Commit 005de3f

Browse files
committed
projdef.h tweaks
1 parent e1647f9 commit 005de3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/projdefs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ overridden by a macro of the same name defined in FreeRTOSConfig.h in case the
3939
definition here is not suitable for your application. */
4040
#ifndef pdMS_TO_TICKS
4141
#if configUSE_16_BIT_TICKS == 1
42-
#define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( uint32_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) )
42+
#define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( uint32_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) )
4343
#else
4444
#define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) )
4545
#endif

0 commit comments

Comments
 (0)