Skip to content

Commit

Permalink
add support for DORA beacons
Browse files Browse the repository at this point in the history
  • Loading branch information
dernasherbrezon committed Nov 23, 2024
1 parent 6a7d748 commit 89b51a6
Show file tree
Hide file tree
Showing 13 changed files with 1,927 additions and 212 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ De-framer is a component that converts soft stream of bits into the frames of sp
* Generic [syncword](https://en.wikipedia.org/wiki/Syncword) correlator - [CorrelateSyncword](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/blocks/CorrelateSyncword.java)
* [USP](https://github.com/sputnixru/SX-USP) - [UspDecoder](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/usp/UspDecoder.java)
* Mobitex - [MobitexBeaconSource](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/mobitex/MobitexBeaconSource.java)
* TUBiX20 - Generic de-framer for TUB-based satellites. [TUBiX20BeaconSource](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/tubix20/TUBiX20BeaconSource.java)
* TUBiX20 - Generic de-framer for TUB-based satellites. [TUBiX20BeaconSource](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/tubix20/TUBiX20BeaconSource.java)
* CCSDS Concatenated - CCSDS 131.0-B-4 implementation for concatenated framing (Convolutional + Reed-Solomon). [CcsdsBeaconSource](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/ccsds/CcsdsBeaconSource.java)

## Auxiliary tools
Expand Down Expand Up @@ -75,6 +75,7 @@ Most likely the algorithm name can't say you much, so it is better to check [cor
* [CSP](https://en.wikipedia.org/wiki/Cubesat_Space_Protocol) - Full support
* [CCSDS](https://en.wikipedia.org/wiki/Consultative_Committee_for_Space_Data_Systems) - [Basic support](https://github.com/dernasherbrezon/jradio/tree/master/src/main/java/ru/r2cloud/jradio/ccsds)
* [PACSAT](https://www.tapr.org/pdf/CNC1990-PacSatBroadcast-NK6K-K8KA.pdf) - [Good support](https://github.com/dernasherbrezon/jradio/tree/master/src/main/java/ru/r2cloud/jradio/falconsat3)
* [OpenLST](https://github.com/OpenLST/openlst) - [OpenLstBeaconSource](https://github.com/dernasherbrezon/jradio/blob/master/src/main/java/ru/r2cloud/jradio/openlst/OpenLstBeaconSource)

## Low-level blocks

Expand Down Expand Up @@ -619,6 +620,11 @@ jradio has lots of built-in satellite decoders. Some of them have non standard d
<td>58472</td>
<td>ru.r2cloud.jradio.eirsat.EirsatBeacon</td>
</tr>
<tr>
<td>DORA</td>
<td>61502</td>
<td>ru.r2cloud.jradio.dora.DoraBeacon</td>
</tr>
</tbody>
</table>

Expand Down
Loading

0 comments on commit 89b51a6

Please sign in to comment.