Switched row and col
authorKevin Townsend <kevin@ktownsend.com>
Sun, 26 Feb 2012 00:11:17 +0000 (01:11 +0100)
committerKevin Townsend <kevin@ktownsend.com>
Sun, 26 Feb 2012 00:11:17 +0000 (01:11 +0100)
drivers/lcd/character/samsung_20T202DA2JA/samsung_20T202DA2JA.c
drivers/lcd/character/samsung_20T202DA2JA/samsung_20T202DA2JA.h

index 67a48e2..2175916 100644 (file)
@@ -361,7 +361,7 @@ void samsungvfdHome(void)
     @brief Sets the cursor to the specified row and column position
 */
 /**************************************************************************/
-void samsungvfdSetCursor(uint8_t col, uint8_t row)
+void samsungvfdSetCursor(uint8_t row, uint8_t col)
 {
   int row_offsets[] = { 0x00, 0x40, 0x14, 0x54 };
   if ( row > samsungvfd_numlines ) 
index 889de2f..d8780a2 100644 (file)
@@ -107,6 +107,6 @@ void samsungvfdAutoscroll ( void );
 void samsungvfdNoAutoscroll ( void );
 void samsungvfdClear ( void );
 void samsungvfdHome ( void );
-void samsungvfdSetCursor ( uint8_t col, uint8_t row );
+void samsungvfdSetCursor ( uint8_t row, uint8_t col );
 
 #endif
This page took 0.031394 seconds and 4 git commands to generate.