File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -69,9 +69,9 @@ typedef unsigned long UBaseType_t;
6969/* 32-bit tick type on a 32-bit architecture, so reads of the tick count do
7070 * not need to be guarded with a critical section. */
7171 #define portTICK_TYPE_IS_ATOMIC 1
72- #elif (configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
73- typedef uint64_t TickType_t ;
74- #define portMAX_DELAY ( TickType_t) 0xffffffffffffffffULL
72+ #elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
73+ typedef uint64_t TickType_t ;
74+ #define portMAX_DELAY ( TickType_t ) 0xffffffffffffffffULL
7575#else
7676 #error configTICK_TYPE_WIDTH_IN_BITS set to unsupported tick type width.
7777#endif
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ typedef unsigned long UBaseType_t;
8484/* 32-bit tick type on a 32-bit architecture, so reads of the tick count do
8585 * not need to be guarded with a critical section. */
8686 #define portTICK_TYPE_IS_ATOMIC 1
87- #elif (configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
88- typedef uint64_t TickType_t ;
89- #define portMAX_DELAY ( TickType_t) 0xffffffffffffffffULL
87+ #elif ( configTICK_TYPE_WIDTH_IN_BITS == TICK_TYPE_WIDTH_64_BITS )
88+ typedef uint64_t TickType_t ;
89+ #define portMAX_DELAY ( TickType_t ) 0xffffffffffffffffULL
9090#else
9191 #error configTICK_TYPE_WIDTH_IN_BITS set to unsupported tick type width.
9292#endif
You can’t perform that action at this time.
0 commit comments