PDA

View Full Version : need help with compile error message



Heckler
- 29th September 2012, 19:01
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/showthread.php?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...

6689

this is what I see when I look at the include file code...
6690

any help is appreciated

Heckler
- 29th September 2012, 19:16
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.