mirror of https://github.com/wh201906/Proxmark3GUI
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
314 B
C++
16 lines
314 B
C++
#include "pm3process.h"
|
|
|
|
PM3Process::PM3Process(QObject* parent): QProcess(parent)
|
|
{
|
|
|
|
}
|
|
|
|
bool PM3Process::init(const QString path, const QString port)
|
|
{
|
|
bool success=true;
|
|
this->start(path, QStringList(port));
|
|
qDebug()<<waitForStarted();
|
|
qDebug()<<waitForReadyRead(3000);
|
|
return true;
|
|
}
|