mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-26 09:08:16 +00:00
Replace use of legacy portTYPE macros from old demos and standard demo files.
This commit is contained in:
@@ -171,7 +171,7 @@ extern void ( vEMAC_ISR_Wrapper )( void );
|
||||
{
|
||||
IntEnable = INT_RX_DONE;
|
||||
VICIntEnable |= 0x00200000;
|
||||
VICVectAddr21 = ( portLONG ) vEMAC_ISR_Wrapper;
|
||||
VICVectAddr21 = ( long ) vEMAC_ISR_Wrapper;
|
||||
prvSetMACAddress();
|
||||
}
|
||||
portEXIT_CRITICAL();
|
||||
@@ -292,10 +292,10 @@ struct uip_eth_addr xAddr;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vApplicationProcessFormInput( portCHAR *pcInputString, portBASE_TYPE xInputLength )
|
||||
void vApplicationProcessFormInput( char *pcInputString, portBASE_TYPE xInputLength )
|
||||
{
|
||||
char *c, *pcText;
|
||||
static portCHAR cMessageForDisplay[ 32 ];
|
||||
static char cMessageForDisplay[ 32 ];
|
||||
extern xQueueHandle xLCDQueue;
|
||||
xLCDMessage xLCDMessage;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user