Subversion Repositories Code-Repo

Rev

Rev 353 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 353 Rev 354
Line 21... Line 21...
21
        void Serial_QueryParameters(void);
21
        void Serial_QueryParameters(void);
22
        void Serial_Connect(QString port, QString speed, QString dataBits,
22
        void Serial_Connect(QString port, QString speed, QString dataBits,
23
                            QString stopBits, QString parity, QString flowControl);
23
                            QString stopBits, QString parity, QString flowControl);
24
        void Serial_Disconnect(bool errored = false);
24
        void Serial_Disconnect(bool errored = false);
25
        void Serial_TransmitString(QString string);
25
        void Serial_TransmitString(QString string);
26
        void Serial_TransmitByteArray(QByteArray buffer);
26
        void Serial_TransmitByteArray(QByteArray data);
27
 
27
 
28
        // Local processing of received data
28
        // Local processing of received data
29
        void Serial_ProcessIncomingData(void);
29
        void Serial_ProcessIncomingData(void);
30
        void Serial_ProcessError(QSerialPort::SerialPortError error);
30
        void Serial_ProcessError(QSerialPort::SerialPortError error);
31
 
31