mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 20:03:50 -04:00
Tidy up - spell check.
This commit is contained in:
parent
c3e153145b
commit
5a418b56fa
4 changed files with 95 additions and 114 deletions
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue