See this thread ...
http://support.melabs.com/threads/956
Thanks! Updated to v1.5 from that link you provided.
Does All Digital work in PBP3? I have installed ALLDIGITAL.pbp in the main directory of PBP3, but Micro Code Studio gives me a warning of unable to open INCLUDE file ALL DIGITAL.pbp. I don't know what I'm doing wrong.
Thank you.
Yes, it works with PBP3.
Post the actual line of code and errors you are receiving.
Paraphrasing errors doesn't give the information needed to diagnose your problem.
DT
This is the code, using PBP3, Micro Code Studio Plus, and a 16F648A PIC selected:
INCLUDE "ALL DIGITAL.pbp"
LED var PORTA.0
mainloop:
HIGH LED
PAUSE 500
LOW LED
PAUSE 500
GOTO MAINLOOP
END
I get this message at the bottom:
WARNING: Unable to open INCLUDE file ALL DIGITAL.pbp
I have been unable to determine the reason I am getting this message.
Thank you very much for your help.
Thank you so much! This works perfectly. Last week I had tried to run a Timer 1 program on a 16F886 that had been running perfectly on a 16F876A. The program would not run on the 16F886 until I added:
ANSEL = %00000000
ANSELH = %00000000
ADCON0 = %00000000
ADCON1 = %00000000
which took me FOREVER to find because I am just starting out learning this. ALLDIGITAL.pbp will save me a lot of time.
Thank you again for helping.
As a relative noob, exactly what I was looking for.
Except...:
I added it to the folder containing pbpx.exe as instructed but on compile Microcode Studio comes back with:
WARNING: unable to open INCLUDE file ALLDIGITAL PBP.
I use PBP3.1
Bookmarks