]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/dsPIC_MPLAB/lcd.c
Update version number ready for the V8.2.3 release.
[freertos] / FreeRTOS / Demo / dsPIC_MPLAB / lcd.c
index fd0c0617c7dcf06ee84c266051361c497bb30b8a..48bbd3fe14ec8235b6565fe32985ac96e680faae 100644 (file)
@@ -1,59 +1,64 @@
 /*\r
-    FreeRTOS V7.5.2 - Copyright (C) 2013 Real Time Engineers Ltd.\r
+    FreeRTOS V8.2.3 - Copyright (C) 2015 Real Time Engineers Ltd.\r
+    All rights reserved\r
 \r
     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
 \r
-    ***************************************************************************\r
-     *                                                                       *\r
-     *    FreeRTOS provides completely free yet professionally developed,    *\r
-     *    robust, strictly quality controlled, supported, and cross          *\r
-     *    platform software that has become a de facto standard.             *\r
-     *                                                                       *\r
-     *    Help yourself get started quickly and support the FreeRTOS         *\r
-     *    project by purchasing a FreeRTOS tutorial book, reference          *\r
-     *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
-     *                                                                       *\r
-     *    Thank you!                                                         *\r
-     *                                                                       *\r
-    ***************************************************************************\r
-\r
     This file is part of the FreeRTOS distribution.\r
 \r
     FreeRTOS is free software; you can redistribute it and/or modify it under\r
     the terms of the GNU General Public License (version 2) as published by the\r
-    Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
+    Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
 \r
-    >>! NOTE: The modification to the GPL is included to allow you to distribute\r
-    >>! a combined work that includes FreeRTOS without being obliged to provide\r
-    >>! the source code for proprietary components outside of the FreeRTOS\r
-    >>! kernel.\r
+    ***************************************************************************\r
+    >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
+    >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
+    >>!   obliged to provide the source code for proprietary components     !<<\r
+    >>!   outside of the FreeRTOS kernel.                                   !<<\r
+    ***************************************************************************\r
 \r
     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
-    FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
+    FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
     link: http://www.freertos.org/a00114.html\r
 \r
-    1 tab == 4 spaces!\r
-\r
     ***************************************************************************\r
      *                                                                       *\r
-     *    Having a problem?  Start by reading the FAQ "My application does   *\r
-     *    not run, what could be wrong?"                                     *\r
+     *    FreeRTOS provides completely free yet professionally developed,    *\r
+     *    robust, strictly quality controlled, supported, and cross          *\r
+     *    platform software that is more than just the market leader, it     *\r
+     *    is the industry's de facto standard.                               *\r
      *                                                                       *\r
-     *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
+     *    Help yourself get started quickly while simultaneously helping     *\r
+     *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
+     *    tutorial book, reference manual, or both:                          *\r
+     *    http://www.FreeRTOS.org/Documentation                              *\r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-    http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
-    license and Real Time Engineers Ltd. contact details.\r
+    http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
+    the FAQ page "My application does not run, what could be wrong?".  Have you\r
+    defined configASSERT()?\r
+\r
+    http://www.FreeRTOS.org/support - In return for receiving this top quality\r
+    embedded software for free we request you assist our global community by\r
+    participating in the support forum.\r
+\r
+    http://www.FreeRTOS.org/training - Investing in training allows your team to\r
+    be as productive as possible as early as possible.  Now you can receive\r
+    FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
+    Ltd, and the world's leading authority on the world's leading RTOS.\r
 \r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
 \r
-    http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
-    Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
-    licenses offer ticketed support, indemnification and middleware.\r
+    http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
+    Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
+\r
+    http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
+    Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
+    licenses offer ticketed support, indemnification and commercial middleware.\r
 \r
     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
     engineered and independently SIL3 certified version for use in safety and\r
@@ -83,18 +88,18 @@ static void vLCDTask( void *pvParameters );
  */\r
 static void prvSetupLCD( void );\r
 \r
-/* \r
- * Move to the first (0) or second (1) row of the LCD. \r
+/*\r
+ * Move to the first (0) or second (1) row of the LCD.\r
  */\r
-static void prvLCDGotoRow( unsigned portSHORT usRow );\r
+static void prvLCDGotoRow( unsigned short usRow );\r
 \r
-/* \r
- * Write a string of text to the LCD. \r
+/*\r
+ * Write a string of text to the LCD.\r
  */\r
-static void prvLCDPutString( portCHAR *pcString );\r
+static void prvLCDPutString( char *pcString );\r
 \r
-/* \r
- * Clear the LCD. \r
+/*\r
+ * Clear the LCD.\r
  */\r
 static void prvLCDClear( void );\r
 \r
@@ -102,8 +107,8 @@ static void prvLCDClear( void );
 \r
 /* Brief delay to permit the LCD to catch up with commands. */\r
 #define lcdVERY_SHORT_DELAY    ( 1 )\r
-#define lcdSHORT_DELAY         ( 4 / portTICK_RATE_MS )\r
-#define lcdLONG_DELAY          ( 15 / portTICK_RATE_MS )\r
+#define lcdSHORT_DELAY         ( 4 / portTICK_PERIOD_MS )\r
+#define lcdLONG_DELAY          ( 15 / portTICK_PERIOD_MS )\r
 \r
 /* LCD commands. */\r
 #define lcdCLEAR                       ( 0x01 )\r
@@ -114,39 +119,39 @@ static void prvLCDClear( void );
 #define PMAEN                          *( ( unsigned short * ) 0x60c )\r
 \r
 /* LCD R/W signal. */\r
-#define  lcdRW  LATDbits.LATD5       \r
+#define  lcdRW  LATDbits.LATD5\r
 \r
 /* LCD lcdRS signal. */\r
-#define  lcdRS  LATBbits.LATB15      \r
+#define  lcdRS  LATBbits.LATB15\r
 \r
 /* LCD lcdE signal . */\r
-#define  lcdE   LATDbits.LATD4       \r
+#define  lcdE   LATDbits.LATD4\r
 \r
 /* Control signal pin direction. */\r
-#define  RW_TRIS       TRISDbits.TRISD5 \r
+#define  RW_TRIS       TRISDbits.TRISD5\r
 #define  RS_TRIS       TRISBbits.TRISB15\r
 #define  E_TRIS                TRISDbits.TRISD4\r
 \r
 /* Port for LCD data */\r
-#define  lcdDATA      LATE           \r
+#define  lcdDATA      LATE\r
 #define  lcdDATAPORT  PORTE\r
 \r
 /* I/O setup for data Port. */\r
-#define  TRISDATA  TRISE          \r
+#define  TRISDATA  TRISE\r
 \r
 /* The length of the queue used to send messages to the LCD gatekeeper task. */\r
 #define lcdQUEUE_SIZE          3\r
 /*-----------------------------------------------------------*/\r
 \r
 /* The queue used to send messages to the LCD task. */\r
-xQueueHandle xLCDQueue;\r
+QueueHandle_t xLCDQueue;\r
 \r
-static void prvLCDCommand( portCHAR cCommand );\r
-static void prvLCDData( portCHAR cChar );\r
+static void prvLCDCommand( char cCommand );\r
+static void prvLCDData( char cChar );\r
 \r
 /*-----------------------------------------------------------*/\r
 \r
-xQueueHandle xStartLCDTask( void )\r
+QueueHandle_t xStartLCDTask( void )\r
 {\r
        /* Create the queue used by the LCD task.  Messages for display on the LCD\r
        are received via this queue. */\r
@@ -154,13 +159,13 @@ xQueueHandle xStartLCDTask( void )
 \r
        /* Start the task that will write to the LCD.  The LCD hardware is\r
        initialised from within the task itself so delays can be used. */\r
-       xTaskCreate( vLCDTask, ( signed portCHAR * ) "LCD", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 1, NULL );\r
+       xTaskCreate( vLCDTask, "LCD", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 1, NULL );\r
 \r
        return xLCDQueue;\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void prvLCDGotoRow( unsigned portSHORT usRow )\r
+static void prvLCDGotoRow( unsigned short usRow )\r
 {\r
        if( usRow == 0 )\r
        {\r
@@ -173,20 +178,20 @@ static void prvLCDGotoRow( unsigned portSHORT usRow )
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void prvLCDCommand( portCHAR cCommand ) \r
+static void prvLCDCommand( char cCommand )\r
 {\r
        /* Prepare RD0 - RD7. */\r
-       lcdDATA &= 0xFF00;               \r
+       lcdDATA &= 0xFF00;\r
 \r
        /* Command byte to lcd. */\r
-    lcdDATA |= cCommand;                  \r
+    lcdDATA |= cCommand;\r
 \r
        /* Ensure lcdRW is 0. */\r
-       lcdRW = 0;                       \r
+       lcdRW = 0;\r
     lcdRS = 0;\r
 \r
        /* Toggle lcdE line. */\r
-    lcdE = 1;                        \r
+    lcdE = 1;\r
     vTaskDelay( lcdVERY_SHORT_DELAY );\r
     lcdE = 0;\r
 \r
@@ -194,35 +199,35 @@ static void prvLCDCommand( portCHAR cCommand )
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void prvLCDData( portCHAR cChar )\r
+static void prvLCDData( char cChar )\r
 {\r
        /* ensure lcdRW is 0. */\r
-       lcdRW = 0;                                       \r
+       lcdRW = 0;\r
 \r
        /* Assert register select to 1. */\r
-    lcdRS = 1;                       \r
+    lcdRS = 1;\r
 \r
        /* Prepare RD0 - RD7. */\r
-       lcdDATA &= 0xFF00;               \r
+       lcdDATA &= 0xFF00;\r
 \r
        /* Data byte to lcd. */\r
-    lcdDATA |= cChar;                 \r
-    lcdE = 1;                          \r
+    lcdDATA |= cChar;\r
+    lcdE = 1;\r
        Nop();\r
     Nop();\r
     Nop();\r
 \r
        /* Toggle lcdE signal. */\r
-    lcdE = 0;                       \r
+    lcdE = 0;\r
 \r
        /* Negate register select to 0. */\r
-    lcdRS = 0;                      \r
+    lcdRS = 0;\r
 \r
        vTaskDelay( lcdVERY_SHORT_DELAY );\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void prvLCDPutString( portCHAR *pcString )\r
+static void prvLCDPutString( char *pcString )\r
 {\r
        /* Write out each character with appropriate delay between each. */\r
        while( *pcString )\r
@@ -244,90 +249,90 @@ static void prvSetupLCD( void )
 {\r
        /* Wait for proper power up. */\r
        vTaskDelay( lcdLONG_DELAY );\r
-                       \r
+\r
        /* Set initial states for the data and control pins */\r
-       LATE &= 0xFF00; \r
+       LATE &= 0xFF00;\r
 \r
        /* R/W state set low. */\r
-    lcdRW = 0;                       \r
+    lcdRW = 0;\r
 \r
        /* lcdRS state set low. */\r
-       lcdRS = 0;                       \r
+       lcdRS = 0;\r
 \r
        /* lcdE state set low. */\r
-       lcdE = 0;                        \r
+       lcdE = 0;\r
 \r
        /* Set data and control pins to outputs */\r
        TRISE &= 0xFF00;\r
 \r
        /* lcdRW pin set as output. */\r
-       RW_TRIS = 0;                  \r
+       RW_TRIS = 0;\r
 \r
        /* lcdRS pin set as output. */\r
-       RS_TRIS = 0;                  \r
+       RS_TRIS = 0;\r
 \r
        /* lcdE pin set as output. */\r
-       E_TRIS = 0;                   \r
+       E_TRIS = 0;\r
 \r
        /* 1st LCD initialization sequence */\r
        lcdDATA &= 0xFF00;\r
     lcdDATA |= 0x0038;\r
-    lcdE = 1;  \r
+    lcdE = 1;\r
     Nop();\r
     Nop();\r
     Nop();\r
 \r
        /* Toggle lcdE signal. */\r
-    lcdE = 0;                        \r
+    lcdE = 0;\r
 \r
        vTaskDelay( lcdSHORT_DELAY );\r
        vTaskDelay( lcdSHORT_DELAY );\r
        vTaskDelay( lcdSHORT_DELAY );\r
-      \r
+\r
        /* 2nd LCD initialization sequence */\r
        lcdDATA &= 0xFF00;\r
     lcdDATA |= 0x0038;\r
-    lcdE = 1;  \r
+    lcdE = 1;\r
+    Nop();\r
     Nop();\r
     Nop();\r
-    Nop();     \r
 \r
        /* Toggle lcdE signal. */\r
-    lcdE = 0;                        \r
+    lcdE = 0;\r
 \r
     vTaskDelay( lcdSHORT_DELAY );\r
 \r
        /* 3rd LCD initialization sequence */\r
        lcdDATA &= 0xFF00;\r
     lcdDATA |= 0x0038;\r
-    lcdE = 1;          \r
+    lcdE = 1;\r
+    Nop();\r
     Nop();\r
     Nop();\r
-    Nop();     \r
 \r
        /* Toggle lcdE signal. */\r
-    lcdE = 0;                        \r
+    lcdE = 0;\r
 \r
        vTaskDelay( lcdSHORT_DELAY );\r
 \r
 \r
        /* Function set. */\r
-    prvLCDCommand( 0x38 );              \r
+    prvLCDCommand( 0x38 );\r
 \r
        /* Display on/off control, cursor blink off (0x0C). */\r
-    prvLCDCommand( 0x0C );              \r
+    prvLCDCommand( 0x0C );\r
 \r
        /* Entry mode set (0x06). */\r
-    prvLCDCommand( 0x06 );             \r
+    prvLCDCommand( 0x06 );\r
 \r
-       prvLCDCommand( lcdCLEAR );        \r
+       prvLCDCommand( lcdCLEAR );\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
 static void vLCDTask( void *pvParameters )\r
 {\r
 xLCDMessage xMessage;\r
-unsigned portSHORT usRow = 0;\r
+unsigned short usRow = 0;\r
 \r
        /* Initialise the hardware.  This uses delays so must not be called prior\r
        to the scheduler being started. */\r
@@ -350,9 +355,9 @@ unsigned portSHORT usRow = 0;
                usRow++;\r
                prvLCDPutString( xMessage.pcMessage );\r
 \r
-               /* Delay the requested amount of time to ensure the text just written \r
+               /* Delay the requested amount of time to ensure the text just written\r
                to the LCD is not overwritten. */\r
-               vTaskDelay( xMessage.xMinDisplayTime );         \r
+               vTaskDelay( xMessage.xMinDisplayTime );\r
        }\r
 }\r
 \r