wfview/README.md

56 wiersze
2.4 KiB
Markdown
Czysty Zwykły widok Historia

2018-06-21 02:06:15 +00:00
# wfview
2018-06-21 07:20:48 +00:00
Open Source Icom IC-7300 Visualizer and Controller, including waterfall view. With this program, you can see your waterfall display on a large screen, or launch from a VNC session and remotely control your radio. wfview does not use hamlib or any other common radio control libraries. That may chance, but at this time, it is not clear how to impliment a continuous stream of spectrum data through either hamlib or flrig. The code should be easily adaptable to the IC-7610 and any other SDR-based Icom radios.
2018-06-21 02:06:15 +00:00
2020-01-03 03:13:13 +00:00
**Please [see our wiki](https://gitlab.com/eliggett/wfview/-/wikis/home) for detailed information**
2018-06-21 07:12:53 +00:00
### Features:
1. Plot bandscope and bandscope waterfall. Optionally, also plot a "peak hold". A splitter lets the user adjust the space used for the waterfall and bandscope plots.
2. Double-elick anywhere on the bandscope or waterfall to tune the radio.
3. Entry of frequency is permitted under the "Frequency" tab. Buttons are provided for touch-screen control
4. Bandscope parameters (span and mode) are adjustable.
### Build Requirements:
2018-06-21 07:18:37 +00:00
1. gcc / g++ / make
2018-06-21 02:09:48 +00:00
2. qmake
3. qt5 (proably the package named "qt5-default")
4. libqt5serialport5-dev
5. libqcustomplot-dev
2018-06-21 02:06:15 +00:00
2018-06-21 02:33:27 +00:00
### Recommended:
2019-12-26 08:47:57 +00:00
* Debian-based Linux system (Debian Linux, Linux Mint, Ubuntu, etc). Any recent Linux system will do though!
2018-06-21 07:18:37 +00:00
* QT Creator for building, designing, and debugging w/gdb
2018-06-21 02:33:27 +00:00
2018-06-21 07:12:53 +00:00
### Build directions:
1. clone this repository into a new folder
2. make a directory to build the code in (mkdir build)
3. Run qmake to configure the build:
2018-06-21 07:18:00 +00:00
* cd build
* qmake ../wfview/wfview.pro
2018-06-21 07:12:53 +00:00
4. Compile by running make.
2018-06-21 02:10:18 +00:00
### Rig setting:
2019-12-26 08:47:57 +00:00
1. CI-V Baud rate: Auto
2. CI-V address: 94h (default)
3. CI-V Transceive ON
4. CI-V USB-> REMOTE Transceive Address: 00h
5. CI-V Output (for ANT): OFF
6. CI-V USB Port: Unlink from REMOTE
7. CI-V USB Baud Rate: 15200
8. CI-V USB Echo Back: OFF
9. Turn on the bandscope on the rig screen
* Note: The program currently assumes the device is on a device like:
~~~
/dev/serial/by-id/usb-Silicon_Labs_CP2102_USB_to_UART_Bridge_Controller_IC-7300_02010092-if00-port0
~~~
This is symlinked to a device like /dev/ttyUSB0 typically. Make sure the port is writable by your username. You can accomplish this using udev rules, or if you are in a hurry:
~~~
sudo chown `whoami` /dev/ttyUSB*
~~~
2018-06-21 02:06:15 +00:00
2018-06-21 02:10:18 +00:00
### TODO:
2019-12-26 08:47:57 +00:00
1. Re-work pseudo term code into separate thread
2. Consider XML RPC to make flrig/fldigi interface easier
3. Add hide/show for SWR, ALC, Power, S-Meter interface
2018-06-21 02:06:15 +00:00