├── .gitignore ├── LICENSE.txt ├── README.md ├── doc ├── main_window.png └── softpedia_free_award_f.gif ├── dpk_debian ├── DEBIAN │ └── control └── usr │ └── share │ ├── applications │ └── uartvide.desktop │ └── icons │ └── uartvide_256.png ├── readme.htm ├── requirements.txt ├── scripts ├── envsetup_template.bat ├── inno_cfg.iss ├── pyinstaller_cfg.spec ├── pyinstaller_run.bat ├── pyinstaller_run.sh ├── update_req.sh ├── version_info.txt ├── wheels_download.sh └── wheels_install.sh └── uartvide ├── appInfo.py ├── configpath.py ├── except_logger.py ├── res ├── __init__.py ├── default_layout.dat ├── images │ ├── checkbox_checked.png │ ├── checkbox_checked_hover.png │ ├── checkbox_checked_pressed.png │ ├── checkbox_unchecked.png │ ├── checkbox_unchecked_hover.png │ ├── checkbox_unchecked_pressed.png │ ├── clear.png │ ├── close2_active.png │ ├── close2_inactive.png │ ├── close_active.png │ ├── close_inactive.png │ ├── counter.png │ ├── down.png │ ├── downarrow.png │ ├── eraser.png │ ├── leftarrow.png │ ├── loop.png │ ├── maximize2_active.png │ ├── maximize2_inactive.png │ ├── maximize_active.png │ ├── maximize_inactive.png │ ├── menu.png │ ├── minimize2_active.png │ ├── minimize2_inactive.png │ ├── minimize_active.png │ ├── minimize_inactive.png │ ├── pin.png │ ├── port_off.png │ ├── port_on.png │ ├── radiobutton_checked.png │ ├── radiobutton_checked_hover.png │ ├── radiobutton_checked_pressed.png │ ├── radiobutton_unchecked.png │ ├── radiobutton_unchecked_hover.png │ ├── radiobutton_unchecked_pressed.png │ ├── refresh.png │ ├── restore2_active.png │ ├── restore2_inactive.png │ ├── restore_active.png │ ├── restore_inactive.png │ ├── rightarrow.png │ ├── save.png │ ├── timestamp.png │ ├── up.png │ └── uparrow.png ├── resources.qrc ├── resources_rc.py └── uartvide-icon │ ├── uartvide.ico │ ├── uartvide_128.png │ ├── uartvide_16.png │ ├── uartvide_20.png │ ├── uartvide_24.png │ ├── uartvide_256.png │ ├── uartvide_32.png │ ├── uartvide_48.png │ └── uartvide_64.png ├── uartvide.py ├── ui ├── mainwindow.ui └── mainwindow_ui.py └── widgets ├── __init__.py ├── animationswitchbutton.py ├── dialog.py ├── elidedlineedit.py ├── quicksendtable.py ├── rightanglecombobox.py ├── uvtextedit.py └── uvtogglebutton.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/README.md -------------------------------------------------------------------------------- /doc/main_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/doc/main_window.png -------------------------------------------------------------------------------- /doc/softpedia_free_award_f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/doc/softpedia_free_award_f.gif -------------------------------------------------------------------------------- /dpk_debian/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/dpk_debian/DEBIAN/control -------------------------------------------------------------------------------- /dpk_debian/usr/share/applications/uartvide.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/dpk_debian/usr/share/applications/uartvide.desktop -------------------------------------------------------------------------------- /dpk_debian/usr/share/icons/uartvide_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/dpk_debian/usr/share/icons/uartvide_256.png -------------------------------------------------------------------------------- /readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/readme.htm -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/envsetup_template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/envsetup_template.bat -------------------------------------------------------------------------------- /scripts/inno_cfg.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/inno_cfg.iss -------------------------------------------------------------------------------- /scripts/pyinstaller_cfg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/pyinstaller_cfg.spec -------------------------------------------------------------------------------- /scripts/pyinstaller_run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/pyinstaller_run.bat -------------------------------------------------------------------------------- /scripts/pyinstaller_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/pyinstaller_run.sh -------------------------------------------------------------------------------- /scripts/update_req.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/update_req.sh -------------------------------------------------------------------------------- /scripts/version_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/version_info.txt -------------------------------------------------------------------------------- /scripts/wheels_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/wheels_download.sh -------------------------------------------------------------------------------- /scripts/wheels_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/scripts/wheels_install.sh -------------------------------------------------------------------------------- /uartvide/appInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/appInfo.py -------------------------------------------------------------------------------- /uartvide/configpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/configpath.py -------------------------------------------------------------------------------- /uartvide/except_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/except_logger.py -------------------------------------------------------------------------------- /uartvide/res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uartvide/res/default_layout.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/default_layout.dat -------------------------------------------------------------------------------- /uartvide/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /uartvide/res/images/checkbox_checked_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/checkbox_checked_hover.png -------------------------------------------------------------------------------- /uartvide/res/images/checkbox_checked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/checkbox_checked_pressed.png -------------------------------------------------------------------------------- /uartvide/res/images/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/checkbox_unchecked.png -------------------------------------------------------------------------------- /uartvide/res/images/checkbox_unchecked_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/checkbox_unchecked_hover.png -------------------------------------------------------------------------------- /uartvide/res/images/checkbox_unchecked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/checkbox_unchecked_pressed.png -------------------------------------------------------------------------------- /uartvide/res/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/clear.png -------------------------------------------------------------------------------- /uartvide/res/images/close2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/close2_active.png -------------------------------------------------------------------------------- /uartvide/res/images/close2_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/close2_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/close_active.png -------------------------------------------------------------------------------- /uartvide/res/images/close_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/close_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/counter.png -------------------------------------------------------------------------------- /uartvide/res/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/down.png -------------------------------------------------------------------------------- /uartvide/res/images/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/downarrow.png -------------------------------------------------------------------------------- /uartvide/res/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/eraser.png -------------------------------------------------------------------------------- /uartvide/res/images/leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/leftarrow.png -------------------------------------------------------------------------------- /uartvide/res/images/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/loop.png -------------------------------------------------------------------------------- /uartvide/res/images/maximize2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/maximize2_active.png -------------------------------------------------------------------------------- /uartvide/res/images/maximize2_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/maximize2_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/maximize_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/maximize_active.png -------------------------------------------------------------------------------- /uartvide/res/images/maximize_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/maximize_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/menu.png -------------------------------------------------------------------------------- /uartvide/res/images/minimize2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/minimize2_active.png -------------------------------------------------------------------------------- /uartvide/res/images/minimize2_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/minimize2_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/minimize_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/minimize_active.png -------------------------------------------------------------------------------- /uartvide/res/images/minimize_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/minimize_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/pin.png -------------------------------------------------------------------------------- /uartvide/res/images/port_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/port_off.png -------------------------------------------------------------------------------- /uartvide/res/images/port_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/port_on.png -------------------------------------------------------------------------------- /uartvide/res/images/radiobutton_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/radiobutton_checked.png -------------------------------------------------------------------------------- /uartvide/res/images/radiobutton_checked_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/radiobutton_checked_hover.png -------------------------------------------------------------------------------- /uartvide/res/images/radiobutton_checked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/radiobutton_checked_pressed.png -------------------------------------------------------------------------------- /uartvide/res/images/radiobutton_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/radiobutton_unchecked.png -------------------------------------------------------------------------------- /uartvide/res/images/radiobutton_unchecked_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/radiobutton_unchecked_hover.png -------------------------------------------------------------------------------- /uartvide/res/images/radiobutton_unchecked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/radiobutton_unchecked_pressed.png -------------------------------------------------------------------------------- /uartvide/res/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/refresh.png -------------------------------------------------------------------------------- /uartvide/res/images/restore2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/restore2_active.png -------------------------------------------------------------------------------- /uartvide/res/images/restore2_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/restore2_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/restore_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/restore_active.png -------------------------------------------------------------------------------- /uartvide/res/images/restore_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/restore_inactive.png -------------------------------------------------------------------------------- /uartvide/res/images/rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/rightarrow.png -------------------------------------------------------------------------------- /uartvide/res/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/save.png -------------------------------------------------------------------------------- /uartvide/res/images/timestamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/timestamp.png -------------------------------------------------------------------------------- /uartvide/res/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/up.png -------------------------------------------------------------------------------- /uartvide/res/images/uparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/images/uparrow.png -------------------------------------------------------------------------------- /uartvide/res/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/resources.qrc -------------------------------------------------------------------------------- /uartvide/res/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/resources_rc.py -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide.ico -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_128.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_16.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_20.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_24.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_256.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_32.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_48.png -------------------------------------------------------------------------------- /uartvide/res/uartvide-icon/uartvide_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/res/uartvide-icon/uartvide_64.png -------------------------------------------------------------------------------- /uartvide/uartvide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/uartvide.py -------------------------------------------------------------------------------- /uartvide/ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/ui/mainwindow.ui -------------------------------------------------------------------------------- /uartvide/ui/mainwindow_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/ui/mainwindow_ui.py -------------------------------------------------------------------------------- /uartvide/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uartvide/widgets/animationswitchbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/animationswitchbutton.py -------------------------------------------------------------------------------- /uartvide/widgets/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/dialog.py -------------------------------------------------------------------------------- /uartvide/widgets/elidedlineedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/elidedlineedit.py -------------------------------------------------------------------------------- /uartvide/widgets/quicksendtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/quicksendtable.py -------------------------------------------------------------------------------- /uartvide/widgets/rightanglecombobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/rightanglecombobox.py -------------------------------------------------------------------------------- /uartvide/widgets/uvtextedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/uvtextedit.py -------------------------------------------------------------------------------- /uartvide/widgets/uvtogglebutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamesun/UartVide/HEAD/uartvide/widgets/uvtogglebutton.py --------------------------------------------------------------------------------