Skip to content

Commit

Permalink
README update + version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dbdexter-dev committed Jan 19, 2022
1 parent 177e7f6 commit a7498a5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
file: ${{github.workspace}}/build/decoder_modules/sdrpp_radiosonde/radiosonde_decoder.so
asset_name: radiosonde_decoder_x64.so
overwrite: false
prerelease: true
prerelease: false



Expand Down
33 changes: 27 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,34 @@ Radiosonde decoder plugin for SDR++
Compatibility:
--------------

This plugin is now based on
[sondedump](https://github.com/dbdexter-dev/sondedump). You can find an updated
list of the supported radiosonde types on the library's page.
| Manufacturer | Model | GPS | Temperature | Humidity |
|--------------|----------|--------------------|--------------------|--------------------|
| Vaisala | RS41-SG | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| Meteomodem | M10 | :heavy_check_mark: | | |
| GRAW | DFM06/09 | :heavy_check_mark: | :heavy_check_mark: | |
| Meisei | iMS-100 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |


Build instructions
------------------
Installing
----------

Binary releases for Windows and Linux (both x86-64 only) are available from
[the Releases page](https://github.com/dbdexter-dev/sdrpp_radiosonde/releases).

- **Windows**: download the `.dll` file from the latest release, and place it in
the `modules` directory within your SDR++ installation.
- **Linux**: download the `.so` file from the latest release, and place it in
the `/usr/lib/sdrpp/plugins` folder.

The plugin can then be enabled from the module manager in SDR++, under the name
*radiosonde\_decoder*


Building from source
--------------------

If no binary is available for your platform, you can build this plugin from
source:

1. Download the SDR++ source code: `git clone https://github.com/AlexandreRouma/SDRPlusPlus`
2. Open the top-level `CMakeLists.txt` file, and add the following line in the
Expand All @@ -28,6 +49,6 @@ add_subdirectory("decoder_modules/sdrpp_radiosonde")
endif(OPT_BUILD_RADIOSONDE_DECODER)
```
4. Navigate to the `decoder_modules` folder, then clone this repository: `git clone https://github.com/dbdexter-dev/sdrpp_radiosonde --recurse-submodules`
5. Build SDR++ as usual: `cd .. && mkdir build && cd build && cmake .. && make && sudo make install`
5. Build and install SDR++ following the guide in the original repository
6. Enable the module by adding it via the module manager

2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ SDRPP_MOD_INFO {
/* Name: */ "radiosonde_decoder",
/* Description: */ "Radiosonde decoder for SDR++",
/* Author: */ "dbdexter-dev",
/* Version: */ 0, 6, 0,
/* Version: */ 0, 7, 0,
/* Max instances */ -1
};

Expand Down

0 comments on commit a7498a5

Please sign in to comment.