General maintenance - changing comments and correcting spellings only.

This commit is contained in:
Richard Barry 2014-08-04 07:57:18 +00:00
parent 60538c7480
commit 162448f06b
5 changed files with 14 additions and 3 deletions

View file

@ -322,7 +322,7 @@ to find the path to the correct portmacro.h file. */
#endif
#if portBYTE_ALIGNMENT == 8
#define portBYTE_ALIGNMENT_MASK ( 0x0007 )
#define portBYTE_ALIGNMENT_MASK ( 0x0007U )
#endif
#if portBYTE_ALIGNMENT == 4

View file

@ -72,7 +72,7 @@
*/
typedef void (*TaskFunction_t)( void * );
/* Converts a time in miliseconds to a time in ticks. */
/* Converts a time in milliseconds to a time in ticks. */
#define pdMS_TO_TICKS( xTimeInMs ) ( ( ( TickType_t ) xTimeInMs * configTICK_RATE_HZ ) / ( TickType_t ) 1000 )
#define pdFALSE ( ( BaseType_t ) 0 )