]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/dsPIC_MPLAB/lcd.c
Change version numbers ready for V8.0.0 release candidate 1 tag.
[freertos] / FreeRTOS / Demo / dsPIC_MPLAB / lcd.c
index 19142246ae722529351f3cdbc1f88cfd69fcd030..7bbcd151300469021080aee25ab0bed05129dca4 100644 (file)
@@ -1,48 +1,38 @@
 /*\r
-    FreeRTOS V7.4.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
+    FreeRTOS V8.0.0:rc1 - Copyright (C) 2014 Real Time Engineers Ltd.\r
+    All rights reserved\r
 \r
-    FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT\r
-    http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
+    VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
 \r
     ***************************************************************************\r
      *                                                                       *\r
-     *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
-     *    Complete, revised, and edited pdf reference manuals are also       *\r
-     *    available.                                                         *\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
-     *    Purchasing FreeRTOS documentation will not only help you, by       *\r
-     *    ensuring you get running as quickly as possible and with an        *\r
-     *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
-     *    the FreeRTOS project to continue with its mission of providing     *\r
-     *    professional grade, cross platform, de facto standard solutions    *\r
-     *    for microcontrollers - completely free of charge!                  *\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
-     *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
-     *                                                                       *\r
-     *    Thank you for using FreeRTOS, and thank you for your support!      *\r
+     *    Thank you!                                                         *\r
      *                                                                       *\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\r
-    distribute a combined work that includes FreeRTOS without being obliged to\r
-    provide the source code for proprietary components outside of the FreeRTOS\r
-    kernel.\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
     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.  See the GNU General Public License for more\r
-    details. You should have received a copy of the GNU General Public License\r
-    and the FreeRTOS license exception along with FreeRTOS; if not itcan be\r
-    viewed here: http://www.freertos.org/a00114.html and also obtained by\r
-    writing to Real Time Engineers Ltd., contact details for whom are available\r
-    on the FreeRTOS WEB site.\r
+    FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
+    link: http://www.freertos.org/a00114.html\r
 \r
     1 tab == 4 spaces!\r
 \r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-\r
-    http://www.FreeRTOS.org - Documentation, books, training, latest versions, \r
+    http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
     license and Real Time Engineers Ltd. contact details.\r
 \r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
-    including FreeRTOS+Trace - an indispensable productivity tool, and our new\r
-    fully thread aware and reentrant UDP/IP stack.\r
-\r
-    http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High \r
-    Integrity Systems, who sell the code with commercial support, \r
-    indemnification and middleware, under the OpenRTOS brand.\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
+    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
+\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
     mission critical applications that require provable dependability.\r
+\r
+    1 tab == 4 spaces!\r
 */\r
 \r
 /* Scheduler includes. */\r
@@ -93,18 +84,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
@@ -124,25 +115,25 @@ 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
@@ -151,8 +142,8 @@ static void prvLCDClear( void );
 /* The queue used to send messages to the LCD task. */\r
 xQueueHandle 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
@@ -164,13 +155,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
@@ -183,20 +174,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
@@ -204,35 +195,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
@@ -254,90 +245,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
@@ -360,9 +351,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