Minor miscellaneous comment updates: mostly identifying drivers at
the top of their source code....
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
/*
|
||||
* CrystalFontz driver
|
||||
*
|
||||
* http://www.crystalfontz.com
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
/*
|
||||
* ncurses driver
|
||||
*
|
||||
* Display LCD display at top left of terminal screen
|
||||
* using ncurses.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
/*
|
||||
* MatrixOrbital GLK Graphic Display Driver
|
||||
*
|
||||
* http://www.matrixorbital.com
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
/*
|
||||
* Driver master (lcd.c)
|
||||
*
|
||||
* This code actually sets up the drivers as requested,
|
||||
* initializes drivers, and allocates memory for drivers.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
@@ -90,6 +98,12 @@
|
||||
|
||||
lcd_logical_driver lcd;
|
||||
|
||||
// TODO: Add multiple names for the same driver?
|
||||
//
|
||||
// Would allow the use of "MatrixOrbital" (for example) or
|
||||
// "Joystick" or "CrystalFontz" or similar more memorable
|
||||
// names, as well as older ones...
|
||||
//
|
||||
lcd_physical_driver drivers[] = {
|
||||
{"base", drv_base_init,},
|
||||
#ifdef MTXORB_DRV
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
/*
|
||||
* TextMode driver
|
||||
*
|
||||
* Displays LCD screens, one after another; suitable for hard-copy
|
||||
* terminals.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Copyright (C) 1999 Horizon Technologies-http://horizon.pair.com/
|
||||
Written by Bryan Rittmeyer <bryanr@pair.com> - Released under GPL
|
||||
|
||||
LCD info: http://www.wirz.com/sli/ */
|
||||
LCD info: http://www.wirz.com/ */
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
Reference in New Issue
Block a user