AT+CRST now send a reset resquest command
---
src/control.cpp | 6 ++++++
src/control.h | 1 +
src/controlbase.ui | 16 ++++++++++++++++
3 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/control.cpp b/src/control.cpp
index 2e22f69..1fa1978 100644
--- a/src/control.cpp
+++ b/src/control.cpp
@@ -84,6 +84,7 @@ ControlWidget::ControlWidget(const QString &ruleFile, Control
*parent)
connect(ui->cbSimInserted, SIGNAL(clicked()), this, SLOT(simInsertRemove()));
connect(ui->pbStart, SIGNAL(clicked()), this, SLOT(simAppStart()));
connect(ui->pbAbort, SIGNAL(clicked()), this, SLOT(simAppAbort()));
+ connect(ui->pbReset, SIGNAL(clicked()), this, SLOT(simAppReset()));
QStringList headers;
headers << "Sender" << "Priority" <<
"Notification Status";
@@ -459,6 +460,11 @@ void ControlWidget::simAppAbort()
p->simAppAbort();
}
+void ControlWidget::simAppReset()
+{
+ emit unsolicitedCommand("AT+CRST");
+}
+
Script::Script(QObject *obj, Ui_ControlBase *ui) : QDBusAbstractAdaptor(obj)
{
/* Export tabs to be accessed by script */
diff --git a/src/control.h b/src/control.h
index 3c85e22..6c4d8a8 100644
--- a/src/control.h
+++ b/src/control.h
@@ -94,6 +94,7 @@ private slots:
void simInsertRemove();
void simAppStart();
void simAppAbort();
+ void simAppReset();
signals:
void unsolicitedCommand(const QString &);
diff --git a/src/controlbase.ui b/src/controlbase.ui
index eca1898..ab06b51 100644
--- a/src/controlbase.ui
+++ b/src/controlbase.ui
@@ -1406,6 +1406,22 @@ p, li { white-space: pre-wrap; }
</property>
</widget>
</item>
+ <item>
+ <widget class="QPushButton" name="pbReset">
+ <property name="enabled">
+ <bool>true</bool>
+ </property>
+ <property name="maximumSize">
+ <size>
+ <width>185</width>
+ <height>25</height>
+ </size>
+ </property>
+ <property name="text">
+ <string>Reset</string>
+ </property>
+ </widget>
+ </item>
</layout>
</widget>
</item>
--
1.7.3.1
Show replies by thread