
Originally Posted by
mpgmike
1 - You must have a copy of the DT_INT and ReEnterPBP code in the file where you save your current program. PBP3 will not search the computer and create a path. Thus, I have multiple copies of the code on my computer.
FYI: You can specify a relative path. I have a separate folder for all my includes. It is located in the same root folder of all my projects:
Code:
C:\
---Somewhere
---MyPBPProjects
---MyIncludes
---Project1
---Project2
---Project3
Here my include folder is named _Include
Code:
INCLUDE "..\_Include\DT_INTS-18\DT_INTS-18.bas" ' Base Interrupt System
INCLUDE "..\_Include\DT_INTS-18\ReEnterPBP-18.bas" ' Include if using PBP interrupts
...
INCLUDE "..\_Include\DT_INTS-14_V110\DT_INTS-14.bas" ' Base Interrupt System
INCLUDE "..\_Include\DT_INTS-14_V110\ReEnterPBP.bas" ' Include if using PBP interrupts
...
INCLUDE "..\_Include\ESP8266_Base.pbp"
INCLUDE "..\_Include\NMEA_base.pbp"
'etc
Bookmarks