If you are using PIC18F, updating to 3.08 may solve you problem.
I had similar problem, and it was bug in PBP. Bug was fixed in PBP3.08.
http://www.pbp3.com/download.html
So give it a try...
If you are using PIC18F, updating to 3.08 may solve you problem.
I had similar problem, and it was bug in PBP. Bug was fixed in PBP3.08.
http://www.pbp3.com/download.html
So give it a try...
Code:GateID_word.lowbyte[(T*2+1)+1] = SDC_buffer[250] ' indexed highbyte +1 ' copy temp varables to next index GateID_word.lowbyte[(T*2) +1] = SDC_buffer[251] ' indexed lowbyte +1
should be
Code:GateID_word.lowbyte[(T*2+1)+2] = SDC_buffer[250] ' indexed highbyte +1 ' copy temp varables to next index GateID_word.lowbyte[(T*2) +2] = SDC_buffer[251] ' indexed lowbyte +1
Bookmarks