##// END OF EJS Templates
Improved AHB UART Plugin, now check how many bytes are available on uart...
Improved AHB UART Plugin, now check how many bytes are available on uart before reading.

File last commit:

r25:8fdbbdd7a3a4 default
r33:de3df68ac881 default
Show More
gr_esb_ui.h
28 lines | 434 B | text/x-c | CLexer
Jeandet Alexis
Started GR-ESB driver.
r22 #ifndef GR_ESB_UI_H
#define GR_ESB_UI_H
#include <QWidget>
namespace Ui {
class GR_ESB_ui;
}
class GR_ESB_ui : public QWidget
{
Q_OBJECT
public:
explicit GR_ESB_ui(QWidget *parent = 0);
Jeandet Alexis
Sync
r24
public slots:
void changeIp(QString ip);
Jeandet Alexis
Some work on GRESB driver for spwplugin.
r25 void lock(bool lock);
Jeandet Alexis
Sync
r24 signals:
void ipchanged(QString ip);
void vlinkchanged(QString vlink);
Jeandet Alexis
Some work on GRESB driver for spwplugin.
r25 void connectClicked();
Jeandet Alexis
Started GR-ESB driver.
r22 private:
Ui::GR_ESB_ui *ui;
};
#endif // GR_ESB_UI_H