Hello!
I am trying to get my ATMega16 to communicate with this serial LCD.
http://www.sparkfun.com/products/9395
I cannot seem to send any characters at all to this product. Has anyone set this up already and got it working. All of the code given online is for an arduino board and I just want to use the atmega16.
I setup my USART like this
UBRRL = 38;
UBRRH = 0x00;
UCSRB = 0x18;
UCSRC = 0x86;
Any help is appreciated.