]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/CORTEX_LM3S316_IAR/commstest.c
Update the demo directory to use the version 8 type naming conventions.
[freertos] / FreeRTOS / Demo / CORTEX_LM3S316_IAR / commstest.c
index fe22b845d3ea717f8dced8ab50876983857d1630..b63bbffcbbdbd8f3ad5fdb4b6b62ac215a41784f 100644 (file)
@@ -108,9 +108,9 @@ can be generated. */
 \r
 /* The time between transmissions of the string on UART 0.   This is pseudo\r
 random in order to generate a bit or randomness to when the interrupts occur.*/\r
-#define commsMIN_TX_DELAY                      ( 40 / portTICK_RATE_MS )\r
-#define commsMAX_TX_DELAY                      ( ( portTickType ) 0x7f )\r
-#define commsOFFSET_TIME                       ( ( portTickType ) 3 )\r
+#define commsMIN_TX_DELAY                      ( 40 / portTICK_PERIOD_MS )\r
+#define commsMAX_TX_DELAY                      ( ( TickType_t ) 0x7f )\r
+#define commsOFFSET_TIME                       ( ( TickType_t ) 3 )\r
 \r
 /* The time the Comms Rx task should wait to receive a character.  This should\r
 be slightly longer than the time between transmissions.  If we do not receive\r
@@ -122,7 +122,7 @@ the timing of the transmission. */
 static unsigned portBASE_TYPE uxCommsErrorStatus = pdPASS;\r
 \r
 /* The queue used to pass characters out of the ISR. */\r
-static xQueueHandle xCommsQueue;\r
+static QueueHandle_t xCommsQueue;\r
 \r
 /* The next character to transmit. */\r
 static char cNextChar;\r
@@ -158,7 +158,7 @@ void vSerialInit( void )
 \r
 void vSerialTxCoRoutine( CoRoutineHandle_t xHandle, unsigned portBASE_TYPE uxIndex )\r
 {\r
-portTickType xDelayPeriod;\r
+TickType_t xDelayPeriod;\r
 static unsigned long *pulRandomBytes = commsFIRST_PROGRAM_BYTES;\r
 \r
        /* Co-routine MUST start with a call to crSTART. */\r