roboforum.ruТехнический форум по робототехнике. |
|
|
#if 0
// *** Set port for LCD Data Bus 8 bit mode *** //
#define LCD_OP_PORT PORTA
#define LCD_IP_PORT PINA
#define LCD_DIR_PORT DDRA
// *** Set LCD Register Select Port and Bit values *** //
#define LCD_RS_PORT PORTC
#define RS_BIT BIT5
// *** Set LCD Read/Write Port and Bit values *** //
#define LCD_RW_PORT PORTC
#define RW_BIT BIT6
// *** Set LCD Enable Port and Bit values *** //
#define LCD_EN_PORT PORTC
#define EN_BIT BIT7
#endif
volatile unsigned char *LCD_EN_PORT = &PORTC;
volatile unsigned char *LCD_DIR_PORT = &DDRA;
volatile unsigned char *LCD_IP_PORT = &PINA;
volatile unsigned char *LCD_OP_PORT = &PORTA;
volatile unsigned char *LCD_RS_PORT = &PORTC;
volatile unsigned char *LCD_RW_PORT = &PORTC;
char LCD_RS_BIT = BIT(5);
char LCD_RW_BIT = BIT(6);
char LCD_EN_BIT = BIT(7);
а на чет русского как быть, там написано где-то? или это в самой прошивке?
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 21