Thread created automatically to discuss a document in CD-Media.
BASIC Stamp Preprocessor v2.13
by: Greg Ross
_This updated version of the BASIC Stamp Preprocessor adds the capability of C style continued source file lines.
Normally, a PBASIC command is required to be on a single line. You are now able to continue lines (as in C) by ending the line with a backslash character. (If you should need to end a…_
This updated version of the BASIC Stamp Preprocessor adds the capability of C style continued source file lines.
Normally, a PBASIC command is required to be on a single line. You are now able to continue lines (as in C) by ending the line with a backslash character. (If you should need to end a line with a backslash but need the next line to not be appended, you may "escape the escape character" by doubling the backslash.)
Example:
(The following code snippet may look vaguely familiar – yet somehow different. ;))
\' Serin COMACOMB, INBAUD,
\' [ oi_swA, oi_swB, rc_swA, rc_swB,
\' p2_x, p1_x, p4_x, p3_x,
\' PB_mode, packet_num, sensor1, sensor2,
\' p2_y, p1_y, sensor3, sensor4,
\' p4_y, p3_y, sensor5, sensor6,
\' p2_wheel, p1_wheel, sensor7, bat_volt,
\' p4_wheel, p3_wheel, p2_aux, p1_aux,
\' p4_aux, p3_aux, delta_t, res01 ]
\'
Serin COMACOMB, INBAUD,
[ oi_swA, oi_swB, rc_swA, rc_swB,
p2_x, p4_x,
sensor1, sensor2,
p2_y, sensor3,
p4_y, sensor5, sensor6,
p2_wheel,
delta_t ]
1013495958stampwpp.exe (597 KB)
program-port.pdf (13.3 KB)