Re: Trouble getting started
Have you tried searching for "beginner config"?
http://www.picbasic.co.uk/forum/showthread.php?t=543
Sounds like you are defining the same thing twice.
Robert
Re: Trouble getting started
Hi,
If you have PBP3 then use #CONFIG - check the manual for details.
If you're on an older version you need to do one of two things:
A) Comment out the default config in the .inc file for the target processor (located in your PBP folder). Put the desired config in your PBP source file (like you're trying to do now)
or
B) Edit the .inc file so it contains the desired config. Make sure you back up the original file firts.
Countless of posts has been made on the subject over the years, search the forum and you should find more details if needed.
/Henrik.
Re: Trouble getting started
"If you have PBP3 then use #CONFIG - check the manual for details."
That was the solution. Thanks!
I think PBP 3 made a nice improvement here allowing a #config block without needing to edit an inc file.