Serial port and GPS

SerialForm.menuSend_Click Method 

Event handler for the menu item send

[Visual Basic]
Private Sub menuSend_Click( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void menuSend_Click(
   object sender,
   EventArgs e
);

Parameters

sender
ignored
e
ignored

Remarks

Sends the string from m_input to the serial port. All escape strings like \r, \n \xNN etc. are unescaped. Thus the user may enter almost every character. Espacially usafull for constructing binary SIRF III sequences. Don't forget to append \r\n at the end of the string while interacting with modems, SIRF chipsets etc.

See Also

SerialForm Class | serial Namespace