Rigol DS1000Z remote control and waveform viewer
 
 
 
Go to file
Teuniz d9490a188b Wave inspector: fixed a bug that caused an error in case of a relatively high DC-offset. 2023-04-10 12:24:58 +02:00
images
install
third_party/kiss_fft
LICENSE
README
about_dialog.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
about_dialog.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
connection.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
connection.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
decode_dialog.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
decode_dialog.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
dsremote.pro Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
edflib.c Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
edflib.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
global.h Wave inspector: fixed a bug that caused an error in case of a relatively high DC-offset. 2023-04-10 12:24:58 +02:00
images.qrc
interface.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
lan_connect_thread.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
lan_connect_thread.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
main.cpp Fix regression bug that prevented compilation on 32-bit systems e.g. Raspberry Pi. 2023-02-09 11:13:07 +01:00
mainwindow.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
mainwindow.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
mainwindow_constr.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
notes.txt
playback_dialog.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
playback_dialog.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
qt_headers.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
read_settings_thread.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
read_settings_thread.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
readme_usbtmc_driver.txt
save_data.cpp Wave inspector: fixed a bug that caused an error in case of a relatively high DC-offset. 2023-04-10 12:24:58 +02:00
save_data_thread.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
save_data_thread.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
screen_thread.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
screen_thread.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
serial_decoder.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
settings_dialog.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
settings_dialog.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
signalcurve.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
signalcurve.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tdial.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tdial.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
timer_handlers.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tled.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tled.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tmc_dev.c Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tmc_dev.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tmc_lan.c Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
tmc_lan.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
utils.c Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
utils.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
wave_dialog.cpp Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
wave_dialog.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00
wave_view.cpp Wave inspector: fixed a bug that caused an error in case of a relatively high DC-offset. 2023-04-10 12:24:58 +02:00
wave_view.h Add Qt6 compatibility. 2023-02-08 21:22:28 +01:00

README

# DSRemote
Operate your Rigol oscilloscope from your Linux desktop.
========================================================

webpage and info: https://www.teuniz.net/DSRemote/


Compiling and installing on Ubuntu Linux and derivatives:
---------------------------------------------------------

sudo apt-get update
sudo apt-get install g++ make git qtbase5-dev-tools qtbase5-dev qt5-default
git clone https://gitlab.com/Teuniz/DSRemote.git
cd DSRemote
qmake
make -j4
sudo make install
dsremote


For USB connection setup use the following commands:
----------------------------------------------------

sudo groupadd usbtmc
sudo usermod -a -G usbtmc <username>
reboot

Now you can run the program by typing: dsremote

(USB connection does not work on modern USB host controllers thanks to
a bug in the scopes' firmware that Rigol does not want to fix.)

 Read also the file readme_usbtcm_driver.txt
 and the file notes.txt.


Supported devices
---------------

DS6000 and DS1000Z series oscilloscopes.

### MSO4000/DS4000 series

There is some basic support like capturing screenshots.

Not tested yet:

* Record & Playback function
* Wave Inspector
* serial decoding.



Note:
This is a private project made available to the public. No pullrequests!
If you believe you found a bug or want to add some feature, open an issue on Gitlab or send me an email.
In case you want to add some code, send me a diff, no pull requests, they will be ignored.
Also, all requests regarding to support other platforms and/or other tools will be ignored.
Again, this a Linux & GCC & Make project. That means no Mac/windows/Clang/CMake etc.