2 Attachment(s)
need help with compile error message
Hey group,
I am trying to use Mister_E's Nokia Glcd include file that allows one to control a Nokia 3110 LCD display using various PIC's.
The include file came from this thread...
http://www.picbasic.co.uk/forum/show...p?t=327&page=7
post # 269
I am using a 12f683 and using an example program that is included in the .zip that mister_e provided.
I am getting a compile error...
Attachment 6689
this is what I see when I look at the include file code...
Attachment 6690
any help is appreciated
Re: need help with compile error message
Never mind, I think I solved my problem.
I replaced this...
@ __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _MCLRE_OFF & _CP_OFF
with this...
#CONFIG
__CONFIG _INTRC_OSC_NOCLKOUT & _WDT_OFF & _MCLRE_OFF & _PWRTE_OFF
#ENDCONFIG
I think it had to do with the newer version of PBP that I am using.