Tidy up - spell check.

This commit is contained in:
Richard Barry 2008-02-13 10:39:07 +00:00
parent c3e153145b
commit 5a418b56fa
4 changed files with 95 additions and 114 deletions

View file

@ -43,7 +43,10 @@
#ifndef PORTMACRO_H
#define PORTMACRO_H
/* Hardware specific includes. */
#include "mb91467d.h"
/* Standard includes. */
#include <stddef.h>
/*-----------------------------------------------------------
@ -65,9 +68,6 @@
#define portSTACK_TYPE unsigned portLONG
#define portBASE_TYPE long
/* This is required since SOFTUNE doesn't support inline directive as is. */
#define inline
#if( configUSE_16_BIT_TICKS == 1 )
typedef unsigned portSHORT portTickType;
#define portMAX_DELAY ( portTickType ) 0xffff
@ -94,7 +94,7 @@ void vPortExitCritical( void );
#define portNOP() __asm( " nop " );
/*-----------------------------------------------------------*/
/* portYIELD() uses SW interrupt */
/* portYIELD() uses a SW interrupt */
#define portYIELD() __asm( " INT #40H " );
/* portYIELD_FROM_ISR() uses delayed interrupt */
@ -107,5 +107,8 @@ void vPortExitCritical( void );
#define portMINIMAL_STACK_SIZE configMINIMAL_STACK_SIZE
/* Remove the inline statement from within the kernel code. */
#define inline
#endif /* PORTMACRO_H */