Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

[Quick Start](./quickstart.md)
- [rsadsb Release Notes](./rsadsb_releases.md)
- [2024.09.02](./2024.09.02.md)
- [2023.11.22](./2023.11.22.md)
- [2022.12.29](./2022.12.29.md)
- [v0.6.1](./v0.6.1.md)
Expand Down
4 changes: 2 additions & 2 deletions src/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A Rust software suite for ADS-B demodulation, decoding, and processing.
## Features

* **Easy Install** - binaries are provided for multiple platforms within the github releases.
* **Beautiful Applications** - the **radar** application uses [tui](https://github.com/fdehau/tui-rs) to create elegant terminal applications.
* **Beautiful Applications** - the **radar** application uses [ratatui](https://github.com/ratatui/ratatui) to create elegant terminal applications.
* **Correct Decoding** - **rsadsb** uses state of the art libraries such as [deku](https://github.com/sharksforarms/deku) to closely and correctly parse the ADS-B protocol.
* **Touchscreen Enabled** - **radar** is designed to use with both just a keyboard, or a touchscreen.
* **Extendable Hackable source code** - all source code is open-source and is easily modified.
Expand All @@ -20,7 +20,7 @@ See [quickstart](quickstart.md) for the easy installation process.
## Latest Release

### Major
[2023-11-22](2023.11.22.md)
[2024-09-02](2024.09.02.md)

### Minor
N/A
Expand Down
12 changes: 6 additions & 6 deletions src/quickstart.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ADS-B Quick Start Installation Guide
_last edited: 2023/11/22_
_last edited: 2024/09/02_

This guide will give you a quick and easy to setup system to demodulate and decode ADS-B messages using this Rust software!
For a good technical intro into what ADS-B is and how it is decoded, see the following [guide](https://mode-s.org/decode/).
Expand Down Expand Up @@ -44,17 +44,17 @@ Binaries can be downloaded from the latest releases of our software on github.
The following is an example for `x86_64`.
```
# download dump1090_rs
> wget https://github.com/rsadsb/dump1090_rs/releases/download/v0.7.1/dump1090_rs-v0.7.1-aarch64-unknown-linux-gnu.tar.gz
> tar -xf dump1090_rs-v0.7.1-aarch64-unknown-linux-gnu.tar.gz
> wget https://github.com/rsadsb/dump1090_rs/releases/download/v0.8.0/dump1090_rs-x86_64-unknown-linux-gnu.tar.gz
> tar -xf dump1090_rs-x86_64-unknown-linux-gnu.tar.gz

# download radar
> wget https://github.com/rsadsb/adsb_deku/releases/download/v2023.11.22/radar-x86_64-unknown-linux-gnu.tar.gz
> wget https://github.com/rsadsb/adsb_deku/releases/download/v2024.09.02/radar-x86_64-unknown-linux-gnu.tar.gz
> tar -xf radar-x86_64-unknown-linux-gnu.tar.gz
```

`ARM` releases are also available:
- [dump1090_rs](https://github.com/rsadsb/dump1090_rs/releases/tag/v0.7.1)
- [radar](https://github.com/rsadsb/adsb_deku/releases/tag/v2023.11.22)
- [dump1090_rs](https://github.com/rsadsb/dump1090_rs/releases/tag/v0.8.0)
- [radar](https://github.com/rsadsb/adsb_deku/releases/tag/v2024.09.02)


## (Optional) Install from source for max performance
Expand Down
1 change: 1 addition & 0 deletions src/rsadsb_releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<img src="https://raw.githubusercontent.com/rsadsb/adsb_deku/master/media/logo.png")
</p>

- [2024-09-02](2024.09.02.md)
- [2023-11-22](2023.11.22.md)
- [2022-12-29](2022.12.29.md)
- [v0.6.1](v0.6.1.md)
Expand Down