Exemplo n.º 1
0
void lineCodingChanged()
{
    uart1SetBaudRate(230400); 	//Baudrate setzen
    uart1SetParity(0);			//kein Parity
    uart1SetStopBits(0);		//keine Stopbits
}
Exemplo n.º 2
0
void lineCodingChanged()
{
    uart1SetBaudRate(usbComLineCoding.dwDTERate);
    uart1SetParity(usbComLineCoding.bParityType);
    uart1SetStopBits(usbComLineCoding.bCharFormat);
}