##// END OF EJS Templates
Improved APB UART Plugin, now check how many bytes are available on uart...
Improved APB UART Plugin, now check how many bytes are available on uart before reading. Memchecker Work In Progress.

File last commit:

r25:8fdbbdd7a3a4 default
r32:4c8d1b562d91 default
Show More
gr_esb_ui.h
28 lines | 434 B | text/x-c | CLexer
#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);
public slots:
void changeIp(QString ip);
void lock(bool lock);
signals:
void ipchanged(QString ip);
void vlinkchanged(QString vlink);
void connectClicked();
private:
Ui::GR_ESB_ui *ui;
};
#endif // GR_ESB_UI_H