Hello all

Have a question about an error I keep getting. I'm writing a program that reads RFID cards, to do this, I have a SERIN2 command that reads the data from the card reader and a SEROUT2 command that pushes that to a display to see. I keep encountering this "Error: Marco SERIN2STR?W not found in macro file" and "Error: Marco SEROUT2STRN?W not found in macro file" problem, any help would be greatly accepted.

PIC Basic Pro V3.0.0.5
using a PIC 16F882

Current Code:


Income var word(9)
high portc.5 'Card reader disabled

Main:

low portc.5 'Card reader enabled
pause 50 'Time to come on
serin2 portc.4,396,[str Income\9] 'Read serial data to string
pause 50
serout2 portc.3,396,[str income\9] 'Output to display
serout2 portc.3,396,[10] ' display to move down one line
goto main