Skip to content

Commit

Permalink
Moved a lot of the frame playback window functionality to a new class…
Browse files Browse the repository at this point in the history
…. This allows the functionality to be run

on a separate thread. The performance is a lot better and "use original timing" is now reasonably accurate.
  • Loading branch information
collin80 committed Nov 9, 2017
1 parent ad0b114 commit 3248393
Show file tree
Hide file tree
Showing 6 changed files with 635 additions and 264 deletions.
6 changes: 4 additions & 2 deletions SavvyCAN.pro
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ SOURCES += main.cpp\
bus_protocols/isotp_handler.cpp \
bus_protocols/j1939_handler.cpp \
bus_protocols/uds_handler.cpp \
jsedit.cpp
jsedit.cpp \
frameplaybackobject.cpp

HEADERS += mainwindow.h \
can_structs.h \
Expand Down Expand Up @@ -117,7 +118,8 @@ HEADERS += mainwindow.h \
bus_protocols/j1939_handler.h \
bus_protocols/uds_handler.h \
bus_protocols/isotp_message.h \
jsedit.h
jsedit.h \
frameplaybackobject.h

FORMS += ui/candatagrid.ui \
ui/connectionwindow.ui \
Expand Down
1 change: 1 addition & 0 deletions connections/connectionwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ void ConnectionWindow::showEvent(QShowEvent* event)
readSettings();
ui->tableConnections->selectRow(0);
currentRowChanged(ui->tableConnections->currentIndex(), ui->tableConnections->currentIndex());
handleConnTypeChanged();
}

void ConnectionWindow::closeEvent(QCloseEvent *event)
Expand Down
Loading

0 comments on commit 3248393

Please sign in to comment.