USB_Host_Shield_2.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros
max_LCD.cpp File Reference
#include "max_LCD.h"
#include "max3421e.h"
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <WProgram.h>
Include dependency graph for max_LCD.cpp:

Go to the source code of this file.

Macros

#define RS   0x04
 
#define E   0x08
 
#define SET_RS   lcdPins |= RS
 
#define CLR_RS   lcdPins &= ~RS
 
#define SET_E   lcdPins |= E
 
#define CLR_E   lcdPins &= ~E
 
#define SENDlcdPins()   pUsb->gpioWr( lcdPins )
 
#define LCD_sendcmd(a)
 
#define LCD_sendchar(a)
 

Macro Definition Documentation

#define CLR_E   lcdPins &= ~E

Definition at line 38 of file max_LCD.cpp.

#define CLR_RS   lcdPins &= ~RS

Definition at line 36 of file max_LCD.cpp.

#define E   0x08

Definition at line 33 of file max_LCD.cpp.

#define LCD_sendchar (   a)
Value:
{ SET_RS; \
sendbyte(a); \
}

Definition at line 46 of file max_LCD.cpp.

#define LCD_sendcmd (   a)
Value:
{ CLR_RS; \
sendbyte(a); \
}

Definition at line 42 of file max_LCD.cpp.

#define RS   0x04

Definition at line 32 of file max_LCD.cpp.

#define SENDlcdPins ( )    pUsb->gpioWr( lcdPins )

Definition at line 40 of file max_LCD.cpp.

#define SET_E   lcdPins |= E

Definition at line 37 of file max_LCD.cpp.

#define SET_RS   lcdPins |= RS

Definition at line 35 of file max_LCD.cpp.