mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Replace use of legacy portTYPE macros from old demos and standard demo files.
This commit is contained in:
parent
3e20aa7d60
commit
b54158d1dc
123 changed files with 736 additions and 736 deletions
|
@ -87,12 +87,12 @@ static void prvSetupLCD( void );
|
|||
/*
|
||||
* Move to the first (0) or second (1) row of the LCD.
|
||||
*/
|
||||
static void prvLCDGotoRow( unsigned portSHORT usRow );
|
||||
static void prvLCDGotoRow( unsigned short usRow );
|
||||
|
||||
/*
|
||||
* Write a string of text to the LCD.
|
||||
*/
|
||||
static void prvLCDPutString( portCHAR *pcString );
|
||||
static void prvLCDPutString( char *pcString );
|
||||
|
||||
/*
|
||||
* Clear the LCD.
|
||||
|
@ -137,7 +137,7 @@ xQueueHandle xStartLCDTask( void )
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvLCDGotoRow( unsigned portSHORT usRow )
|
||||
static void prvLCDGotoRow( unsigned short usRow )
|
||||
{
|
||||
if( usRow == 0 )
|
||||
{
|
||||
|
@ -154,7 +154,7 @@ static void prvLCDGotoRow( unsigned portSHORT usRow )
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvLCDPutString( portCHAR *pcString )
|
||||
static void prvLCDPutString( char *pcString )
|
||||
{
|
||||
/* Write out each character with appropriate delay between each. */
|
||||
while( *pcString )
|
||||
|
@ -206,7 +206,7 @@ static void prvSetupLCD( void )
|
|||
static void vLCDTask( void *pvParameters )
|
||||
{
|
||||
xLCDMessage xMessage;
|
||||
unsigned portSHORT usRow = 0;
|
||||
unsigned short usRow = 0;
|
||||
|
||||
/* Remove compiler warnigns. */
|
||||
( void ) pvParameters;
|
||||
|
|
|
@ -91,11 +91,11 @@ static void prvCalculateAndStoreJitter( void );
|
|||
|
||||
/* The maximum time (in processor clocks) between two consecutive timer
|
||||
interrupts so far. */
|
||||
unsigned portSHORT usMaxJitter = 0;
|
||||
unsigned short usMaxJitter = 0;
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vSetupTimerTest( unsigned portSHORT usFrequencyHz )
|
||||
void vSetupTimerTest( unsigned short usFrequencyHz )
|
||||
{
|
||||
/* T2 is used to generate interrupts. T4 is used to provide an accurate
|
||||
time measurement. */
|
||||
|
@ -105,10 +105,10 @@ void vSetupTimerTest( unsigned portSHORT usFrequencyHz )
|
|||
TMR4 = 0;
|
||||
|
||||
/* Timer 2 is going to interrupt at usFrequencyHz Hz. */
|
||||
PR2 = ( unsigned portSHORT ) ( configCPU_CLOCK_HZ / ( unsigned portLONG ) usFrequencyHz );
|
||||
PR2 = ( unsigned short ) ( configCPU_CLOCK_HZ / ( unsigned long ) usFrequencyHz );
|
||||
|
||||
/* Timer 4 is going to free run from minimum to maximum value. */
|
||||
PR4 = ( unsigned portSHORT ) timerMAX_COUNT;
|
||||
PR4 = ( unsigned short ) timerMAX_COUNT;
|
||||
|
||||
/* Setup timer 2 interrupt priority to be above the kernel priority so
|
||||
the timer jitter is not effected by the kernel activity. */
|
||||
|
@ -128,8 +128,8 @@ void vSetupTimerTest( unsigned portSHORT usFrequencyHz )
|
|||
|
||||
static void prvCalculateAndStoreJitter( void )
|
||||
{
|
||||
static unsigned portSHORT usLastCount = 0, usSettleCount = 0;
|
||||
unsigned portSHORT usThisCount, usDifference;
|
||||
static unsigned short usLastCount = 0, usSettleCount = 0;
|
||||
unsigned short usThisCount, usDifference;
|
||||
|
||||
/* Capture the timer value as we enter the interrupt. */
|
||||
usThisCount = TMR4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue