All functions assume you followed directions in the "How To Add To Your Project"
The "PortRemoveChars" function is used to certain characters (or string of characters) that may be in the serial port buffer. Syntax: long PortRemoveChars(char* StringToRemove) Parameters: StringToRemove = Characters (or String) to remove from port Returns: 0 if failed 1 if successfull Example: CallPortRemoveChars = PortRemoveChars("I1M"); If before calling this function the port contained "I1M1000,I1M-1000" After calling this function the port would now contain "I1M1000,-1000"