Forum Discussion
Altera_Forum
Honored Contributor
18 years agoDE2 LCD display
I'm trying to debug a code I've written, but I'm having trouble figuring out the values of some of my parameters while using the Altera Debug Client. I'm using the Altera DE2 board and I was hoping t...
Altera_Forum
Honored Contributor
12 years agoI keep hitting this 'obsolete' thread... just FYI, as of Quartus 13.0sp1 the library is 'altera_avalon_lcd_16207.h'
Looking over that and the other docs should help...# include "altera_avalon_lcd_16207.h"# include "altera_avalon_lcd_16207_regs.h" then you just treat it like a 'mostly avalon' device... IORD_ALTERA_AVALON_LCD_16207_STATUS(baseAddress); IOWR_ALTERA_AVALON_LCD_16207_DATA(base, data); However... the LCD needs quite a few 'waits'... so don't try to do a lot of IOWR's in a quick sequence.. put in some waits.. try starting wtih 100usec between them to start.