Skip to content

Commit bd3c52c

Browse files
Jacques GUILLOUjacky309
Jacques GUILLOU
authored andcommitted
Fix portTICK_RATE_MICROSECONDS in POSIX port
1 parent 8661615 commit bd3c52c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portable/ThirdParty/GCC/Posix/portmacro.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ typedef unsigned long TickType_t;
7171
#define portSTACK_GROWTH ( -1 )
7272
#define portHAS_STACK_OVERFLOW_CHECKING ( 1 )
7373
#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
74-
#define portTICK_RATE_MICROSECONDS ( ( portTickType ) 1000000 / configTICK_RATE_HZ )
74+
#define portTICK_RATE_MICROSECONDS ( ( TickType_t ) 1000000 / configTICK_RATE_HZ )
7575
#define portBYTE_ALIGNMENT 8
7676
/*-----------------------------------------------------------*/
7777

0 commit comments

Comments
 (0)