mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
Remove unnecessary use of portLONG, portCHAR and portSHORT.
Change version number in headers.
This commit is contained in:
parent
506dd1b7c8
commit
7f0c4ef656
123 changed files with 4610 additions and 4496 deletions
|
@ -29,9 +29,9 @@
|
|||
#pragma options align= packed
|
||||
typedef struct
|
||||
{
|
||||
unsigned portSHORT status; /* control and status */
|
||||
unsigned portSHORT length; /* transfer length */
|
||||
unsigned portCHAR *data; /* buffer address */
|
||||
unsigned short status; /* control and status */
|
||||
unsigned short length; /* transfer length */
|
||||
unsigned char *data; /* buffer address */
|
||||
} FECBD;
|
||||
|
||||
/*
|
||||
|
@ -85,7 +85,7 @@ typedef struct
|
|||
int fecbd_init(int, int, int);
|
||||
void fecbd_flush(int);
|
||||
void fecbd_dump( void );
|
||||
unsigned portLONG fecbd_get_start(int, int);
|
||||
unsigned long fecbd_get_start(int, int);
|
||||
FECBD* fecbd_rx_alloc(int);
|
||||
FECBD* fecbd_tx_alloc(int);
|
||||
FECBD* fecbd_tx_free(int);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue