Hi all,
I'm using PbP3.1 with a PIC18F device.
I need to use the LONG option in a particular program, but seems like the string-formatting modifier does not work properly.
For example

Code:
FileOffset VAR WORD
FileOffset=12345 
Hserout2 ["Fileoffset=",DEC FileOffset,13,10]
Should send this string
Code:
Fileoffset=12345
but I see only this
Code:
Fileoffset=,
Also the other modifiers BIN, HEX does not work
If I remove the "LONG" option in the compiler settings the string is formatted properly.

Any idea ?