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 e1647f9 commit 005de3fCopy full SHA for 005de3f
src/projdefs.h
@@ -39,7 +39,7 @@ overridden by a macro of the same name defined in FreeRTOSConfig.h in case the
39
definition here is not suitable for your application. */
40
#ifndef pdMS_TO_TICKS
41
#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 ) )
+ #define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( uint32_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) )
43
#else
44
#define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) )
45
#endif
0 commit comments