Hi
My init for LCD seems to malfunction,( but do proberly what i have told it to do![Smile :) :)]()
Get only line 1 active.
Here is LCD.c code
Can't init more than one line on LCD
My init for LCD seems to malfunction,( but do proberly what i have told it to do

Get only line 1 active.
Here is LCD.c code
Code (Text):
- #ifndef _XTAL_FREQ
- // Unless specified elsewhere, 8MHz system frequency is assumed
- #define _XTAL_FREQ 8000000
- #endif
- #include <htc.h>
- #include "lcd.h"
- #define LCD_RS RC0
- #define LCD_EN RC1
- #define LCD_D4 RB4 // Data bits
- #define LCD_D5 RB5 // Data bits
- #define LCD_D6 RB6 // Data bits
- #define LCD_D7 RB7 // Data bits
- #define...