├── .gitignore ├── LICENSE ├── README.md ├── canspy.pro ├── forms ├── configdialog.ui ├── mainwindow.ui ├── msgseq.ui └── triggerdialog.ui ├── images ├── camera-photo.png ├── canspy.qrc ├── checkbox_indicator.png ├── checkbox_indicator_disabled_checked.png ├── clear.png ├── configure.png ├── connect.png ├── disconnect.png ├── filter.png └── icon.ico ├── include ├── canbus │ ├── can_drv.h │ ├── can_packet.h │ ├── can_state.h │ ├── qcanbuffer.h │ ├── qcanpacketconsumer.h │ ├── qcanrecvthread.h │ ├── qcansendthread.h │ ├── qcansocket.h │ └── qcansyncthread.h ├── configdialog.h ├── drivers │ ├── can_socket_ops.h │ ├── net_ops.h │ ├── simulation_ops.h │ └── usb2can_ops.h ├── logmodel.h ├── mainwindow.h ├── msgseq.h ├── os_utils.h ├── qappsettings.h ├── qcanbuffer.h ├── qcanmonitor.h ├── qcanpacketconsumer.h ├── qcanpkgabstractmodel.h ├── qcanrecvthread.h ├── qcansendthread.h ├── qcansocket.h ├── qdelegatecolor.h ├── trigger.h └── utils.h └── src ├── can_drv.cxx ├── configdialog.cxx ├── drivers ├── general │ ├── net_ops.cxx │ └── simulation_ops.cxx └── linux │ └── can_socket_ops.cxx ├── logmodel.cxx ├── main.cxx ├── mainwindow.cxx ├── msgseq.cxx ├── osdep ├── linux │ └── utils_linux.cxx ├── macosx │ └── can_socket_macosx.cxx └── windows │ ├── can_socket_windows.cxx │ ├── ixxat_ops.cxx │ ├── ixxat_ops.cxx.orig │ ├── usb2can_ops.cxx │ └── utils_windows.cxx ├── qappsettings.cxx ├── qcanbuffer.cxx ├── qcanmonitor.cxx ├── qcanpkgabstractmodel.cxx ├── qcanrecvthread.cxx ├── qcansendthread.cxx ├── qcansocket.cxx ├── qdelegatecolor.cxx └── trigger.cxx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/README.md -------------------------------------------------------------------------------- /canspy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/canspy.pro -------------------------------------------------------------------------------- /forms/configdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/forms/configdialog.ui -------------------------------------------------------------------------------- /forms/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/forms/mainwindow.ui -------------------------------------------------------------------------------- /forms/msgseq.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/forms/msgseq.ui -------------------------------------------------------------------------------- /forms/triggerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/forms/triggerdialog.ui -------------------------------------------------------------------------------- /images/camera-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/camera-photo.png -------------------------------------------------------------------------------- /images/canspy.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/canspy.qrc -------------------------------------------------------------------------------- /images/checkbox_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/checkbox_indicator.png -------------------------------------------------------------------------------- /images/checkbox_indicator_disabled_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/checkbox_indicator_disabled_checked.png -------------------------------------------------------------------------------- /images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/clear.png -------------------------------------------------------------------------------- /images/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/configure.png -------------------------------------------------------------------------------- /images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/connect.png -------------------------------------------------------------------------------- /images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/disconnect.png -------------------------------------------------------------------------------- /images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/filter.png -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/images/icon.ico -------------------------------------------------------------------------------- /include/canbus/can_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/can_drv.h -------------------------------------------------------------------------------- /include/canbus/can_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/can_packet.h -------------------------------------------------------------------------------- /include/canbus/can_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/can_state.h -------------------------------------------------------------------------------- /include/canbus/qcanbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/qcanbuffer.h -------------------------------------------------------------------------------- /include/canbus/qcanpacketconsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/qcanpacketconsumer.h -------------------------------------------------------------------------------- /include/canbus/qcanrecvthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/qcanrecvthread.h -------------------------------------------------------------------------------- /include/canbus/qcansendthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/qcansendthread.h -------------------------------------------------------------------------------- /include/canbus/qcansocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/qcansocket.h -------------------------------------------------------------------------------- /include/canbus/qcansyncthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/canbus/qcansyncthread.h -------------------------------------------------------------------------------- /include/configdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/configdialog.h -------------------------------------------------------------------------------- /include/drivers/can_socket_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/drivers/can_socket_ops.h -------------------------------------------------------------------------------- /include/drivers/net_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/drivers/net_ops.h -------------------------------------------------------------------------------- /include/drivers/simulation_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/drivers/simulation_ops.h -------------------------------------------------------------------------------- /include/drivers/usb2can_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/drivers/usb2can_ops.h -------------------------------------------------------------------------------- /include/logmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/logmodel.h -------------------------------------------------------------------------------- /include/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/mainwindow.h -------------------------------------------------------------------------------- /include/msgseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/msgseq.h -------------------------------------------------------------------------------- /include/os_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/os_utils.h -------------------------------------------------------------------------------- /include/qappsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qappsettings.h -------------------------------------------------------------------------------- /include/qcanbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcanbuffer.h -------------------------------------------------------------------------------- /include/qcanmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcanmonitor.h -------------------------------------------------------------------------------- /include/qcanpacketconsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcanpacketconsumer.h -------------------------------------------------------------------------------- /include/qcanpkgabstractmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcanpkgabstractmodel.h -------------------------------------------------------------------------------- /include/qcanrecvthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcanrecvthread.h -------------------------------------------------------------------------------- /include/qcansendthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcansendthread.h -------------------------------------------------------------------------------- /include/qcansocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qcansocket.h -------------------------------------------------------------------------------- /include/qdelegatecolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/qdelegatecolor.h -------------------------------------------------------------------------------- /include/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/trigger.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/include/utils.h -------------------------------------------------------------------------------- /src/can_drv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/can_drv.cxx -------------------------------------------------------------------------------- /src/configdialog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/configdialog.cxx -------------------------------------------------------------------------------- /src/drivers/general/net_ops.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/drivers/general/net_ops.cxx -------------------------------------------------------------------------------- /src/drivers/general/simulation_ops.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/drivers/general/simulation_ops.cxx -------------------------------------------------------------------------------- /src/drivers/linux/can_socket_ops.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/drivers/linux/can_socket_ops.cxx -------------------------------------------------------------------------------- /src/logmodel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/logmodel.cxx -------------------------------------------------------------------------------- /src/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/main.cxx -------------------------------------------------------------------------------- /src/mainwindow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/mainwindow.cxx -------------------------------------------------------------------------------- /src/msgseq.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/msgseq.cxx -------------------------------------------------------------------------------- /src/osdep/linux/utils_linux.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/linux/utils_linux.cxx -------------------------------------------------------------------------------- /src/osdep/macosx/can_socket_macosx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/macosx/can_socket_macosx.cxx -------------------------------------------------------------------------------- /src/osdep/windows/can_socket_windows.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/windows/can_socket_windows.cxx -------------------------------------------------------------------------------- /src/osdep/windows/ixxat_ops.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/windows/ixxat_ops.cxx -------------------------------------------------------------------------------- /src/osdep/windows/ixxat_ops.cxx.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/windows/ixxat_ops.cxx.orig -------------------------------------------------------------------------------- /src/osdep/windows/usb2can_ops.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/windows/usb2can_ops.cxx -------------------------------------------------------------------------------- /src/osdep/windows/utils_windows.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/osdep/windows/utils_windows.cxx -------------------------------------------------------------------------------- /src/qappsettings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qappsettings.cxx -------------------------------------------------------------------------------- /src/qcanbuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qcanbuffer.cxx -------------------------------------------------------------------------------- /src/qcanmonitor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qcanmonitor.cxx -------------------------------------------------------------------------------- /src/qcanpkgabstractmodel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qcanpkgabstractmodel.cxx -------------------------------------------------------------------------------- /src/qcanrecvthread.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qcanrecvthread.cxx -------------------------------------------------------------------------------- /src/qcansendthread.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qcansendthread.cxx -------------------------------------------------------------------------------- /src/qcansocket.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qcansocket.cxx -------------------------------------------------------------------------------- /src/qdelegatecolor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/qdelegatecolor.cxx -------------------------------------------------------------------------------- /src/trigger.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manux81/canspy/HEAD/src/trigger.cxx --------------------------------------------------------------------------------