summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/dsPIC_MPLAB/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/dsPIC_MPLAB/lcd.h')
-rw-r--r--FreeRTOS/Demo/dsPIC_MPLAB/lcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeRTOS/Demo/dsPIC_MPLAB/lcd.h b/FreeRTOS/Demo/dsPIC_MPLAB/lcd.h
index c0d26445e..650316652 100644
--- a/FreeRTOS/Demo/dsPIC_MPLAB/lcd.h
+++ b/FreeRTOS/Demo/dsPIC_MPLAB/lcd.h
@@ -68,13 +68,13 @@
/* Create the task that will control the LCD. Returned is a handle to the queue
on which messages to get written to the LCD should be written. */
-xQueueHandle xStartLCDTask( void );
+QueueHandle_t xStartLCDTask( void );
typedef struct
{
/* The minimum amount of time the message should remain on the LCD without
being overwritten. */
- portTickType xMinDisplayTime;
+ TickType_t xMinDisplayTime;
/* A pointer to the string to be displayed. */
char *pcMessage;