Maybe on POST 116 which is few time after the Green splat thingy
http://www.picbasic.co.uk/forum/show...&postcount=116
Maybe on POST 116 which is few time after the Green splat thingy
http://www.picbasic.co.uk/forum/show...&postcount=116
Last edited by mister_e; - 6th March 2007 at 23:15.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Good day to all!!!
I'm Ryan from the philippines i've been wanting to use my homebuilt icd2 but i'm having a hard time compiling my sourcecode with Darrel's instant interrupt in MPLAB has anyone tried and successfully compiled it in MPLAB?
To anyoneThanks in advance!!!
is this happen to ANY PBP program or just when using DT-INT.
I don't know why it shouldn't. can you at least post some code OR the errors message + PIC#
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Yes indeed just when using dt_ints it fails to compile here are the following error message
"Executing: "C:\PBP\PBPW.EXE" -p16F877A -ampasm -oq -z "SMS_CONTROL1_MPLAB.bas"
Error[113] C:\PBP\PBPPIC14.LIB 2784 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2785 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2789 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2790 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2800 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2871 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2889 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2913 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2920 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2928 : Symbol not previously defined (PortD)
Error[113] C:\PBP\PBPPIC14.LIB 2934 "
The problem is due to your LCD DEFINES
Always make sure that ALL DEFINEs are properly written. you MUST use PORTD in uppercase.Code:' LCD Display ' ----------- DEFINE LCD4X20 DEFINE LCD_DREG PortD ' Set LCD Data to PortD DEFINE LCD_DBIT 0 ' Set starting Data to Bit0 DEFINE LCD_EREG PortD ' Set LCD Enable to PortC DEFINE LCD_EBIT 5 ' Set LCD Enable line to PortC.1 DEFINE LCD_RSREG PortD ' Set LCD Register Select to PortB DEFINE LCD_RSBIT 4 ' Set LCD RS line to PORTC.0 DEFINE LCD_BITS 4 ' Set for a 8 bit Bus
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Bookmarks