Files @ 71f772af835d
Branch filter:

Location: tempo-plotter/main.cpp

Hasan Yavuz ÖZDERYA
implemented stop bits and flow control selection buttons
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}