make Doxygen happy by giving the private data structure a unique name
This commit is contained in:
@@ -267,23 +267,22 @@
|
||||
#define SCR2_L 0x00
|
||||
#define SCR2_H 0x06
|
||||
|
||||
typedef struct p {
|
||||
|
||||
// display type
|
||||
int type;
|
||||
/** private data for the \c sed1330 driver */
|
||||
typedef struct sed1330_private_data {
|
||||
int type; /**< display type */
|
||||
|
||||
// wiring scheme variables to be set by sed1330_init()
|
||||
int A0;
|
||||
int A0;
|
||||
int nRESET;
|
||||
int nWR;
|
||||
|
||||
// which lpt port to use
|
||||
int port;
|
||||
int port; /**< LPT port to use */
|
||||
|
||||
unsigned char * framebuf_text;
|
||||
unsigned char * lcd_contents_text;
|
||||
unsigned char * framebuf_graph;
|
||||
unsigned char * lcd_contents_graph;
|
||||
unsigned char *framebuf_text;
|
||||
unsigned char *lcd_contents_text;
|
||||
unsigned char *framebuf_graph;
|
||||
unsigned char *lcd_contents_graph;
|
||||
|
||||
int width, height;
|
||||
int cellwidth, cellheight;
|
||||
|
||||
Reference in New Issue
Block a user