mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
more descriptive display names with option -l
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@975 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
This commit is contained in:
+1
-1
@@ -297,7 +297,7 @@ static void plugin_contrast(RESULT * result, RESULT * arg1)
|
||||
/* list models */
|
||||
int drv_BW_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("BWCT USB to HD44780 interface");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -276,7 +276,7 @@ static int drv_Curs_keypad(const int num)
|
||||
/* list models */
|
||||
int drv_Curs_list(void)
|
||||
{
|
||||
printf("any");
|
||||
printf("pure ncurses based text driver");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -507,7 +507,7 @@ static int drv_G15_start(const char *section)
|
||||
/* list models */
|
||||
int drv_G15_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("Logitech G-15 / Dell M1730");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -297,7 +297,7 @@ static int drv_IRLCD_start(const char *section)
|
||||
/* list models */
|
||||
int drv_IRLCD_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("USBtiny LCD controller");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -569,7 +569,7 @@ static void plugin_brightness(RESULT * result, RESULT * arg1)
|
||||
/* list models */
|
||||
int drv_L2U_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("USB2LCD display interface");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -259,7 +259,7 @@ static int drv_LL_start(const char *section, const int quiet)
|
||||
/* list models */
|
||||
int drv_LL_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("LCD-Linux HD44780 kernel driver");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -186,7 +186,7 @@ static int drv_LT_start(const char *section, const int quiet)
|
||||
/* list models */
|
||||
int drv_LT_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("LCDTerm serial-to-HD44780 adapter board");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -252,6 +252,7 @@ static int drv_LEDMatrix_start(const char *section)
|
||||
/* list models */
|
||||
int drv_LEDMatrix_list(void)
|
||||
{
|
||||
printf("LEDMATRIX by Till Harbaum");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -95,7 +95,7 @@ typedef struct {
|
||||
} MODEL;
|
||||
|
||||
static MODEL Models[] = {
|
||||
{0x01, "generic"},
|
||||
{0x01, "M50530"},
|
||||
{0xff, "Unknown"}
|
||||
};
|
||||
|
||||
|
||||
+1
-1
@@ -117,7 +117,7 @@ static int drv_NULL_start(const char *section)
|
||||
/* list models */
|
||||
int drv_NULL_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("NULL driver for testing purposes");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -313,7 +313,7 @@ static void plugin_bootscreen(RESULT * result, RESULT * arg1)
|
||||
/* list models */
|
||||
int drv_PHAnderson_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("PHAnderson serial-to-HD44780 adapter");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -226,7 +226,7 @@ static void plugin_backlight(RESULT * result, RESULT * arg1)
|
||||
/* list models */
|
||||
int drv_Pertelian_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("Pertelian X2040 displays");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -408,7 +408,7 @@ static void plugin_contrast(RESULT * result, RESULT * arg1)
|
||||
/* list models */
|
||||
int drv_Sample_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("Sample driver");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -65,7 +65,7 @@ typedef struct {
|
||||
} MODEL;
|
||||
|
||||
static MODEL Models[] = {
|
||||
{0x01, "generic"},
|
||||
{0x01, "T6963"},
|
||||
{0xff, "Unknown"}
|
||||
};
|
||||
|
||||
|
||||
+1
-1
@@ -312,7 +312,7 @@ static void plugin_backlight(RESULT * result, RESULT * arg1)
|
||||
/* list models */
|
||||
int drv_TF_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("TREFON USB LCD");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
/* $Id$
|
||||
* $URL$
|
||||
*
|
||||
* new style driver for USBLCD displays
|
||||
* driver for USBHUB
|
||||
*
|
||||
* Copyright (C) 2006 Ernst Bachmann <e.bachmann@xebec.de>
|
||||
* Copyright (C) 2004,2006 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
|
||||
@@ -257,7 +257,7 @@ static int drv_UH_start(const char *section, const __attribute__ ((unused))
|
||||
/* list models */
|
||||
int drv_UH_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("USBHUB");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -388,7 +388,7 @@ static int drv_UL_start(const char *section, const int quiet)
|
||||
/* list models */
|
||||
int drv_UL_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("USBLCD");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -381,7 +381,7 @@ static void plugin_gpo(RESULT * result, RESULT * argv[])
|
||||
/* list models */
|
||||
int drv_pL_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("picoLCD 20x2 Text LCD");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -670,7 +670,7 @@ static void plugin_backlight(RESULT * result, RESULT * arg1)
|
||||
*/
|
||||
int drv_ula200_list(void)
|
||||
{
|
||||
printf("generic");
|
||||
printf("ULA200");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user