##// END OF EJS Templates
Removed APBUartPlugin bug (when switching between debug and non debug link)....
Removed APBUartPlugin bug (when switching between debug and non debug link). Added APBUart Python wrapper.

File last commit:

r25:8fdbbdd7a3a4 default
r34:ccd56e93ef09 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