Subversion Repositories Code-Repo

Rev

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

Rev 352 Rev 353
Line 19... Line 19...
19
    public slots:
19
    public slots:
20
        // Inbound from SerialController
20
        // Inbound from SerialController
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(void);
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 buffer);
27
 
27
 
28
        // Local processing of received data
28
        // Local processing of received data
29
        void Serial_ProcessIncomingData(void);
29
        void Serial_ProcessIncomingData(void);