Crates.io | ax25_tnc |
lib.rs | ax25_tnc |
version | 0.3.0 |
source | src |
created_at | 2023-08-21 10:55:54.709029 |
updated_at | 2023-08-21 10:55:54.709029 |
description | Send and receive AX.25 with Packet Radio TNCs. |
homepage | |
repository | https://github.com/thombles/ax25-rs |
max_upload_size | |
id | 949894 |
size | 41,273 |
This project aims to provide everything you need to write cross-platform packet radio software in Rust.
The crate ax25
provides:
no_std
environmentsThe crate ax25_tnc
provides:
Most developers will want to focus on tnc::TncAddress
and tnc::Tnc
.
tnc:tcpkiss:192.168.0.1:8001
ortnc:linuxif:vk7ntk-2
let addr = string.parse::<TncAddress>()?;
let tnc = Tnc::open(&addr)?;
send_frame()
and receive_frame()
to communicate on the radio.Tnc
can be cloned for multithreaded use.If your application requires encoding/decoding AX.25 data directly, see the frame
module.
This following is one of the included example programs, listen.rs
. It is a poor
imitation of axlisten
.
use ax25_tnc::tnc::{Tnc, TncAddress};
use std::env;
use time::OffsetDateTime;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let args: Vec<String> = env::args().collect();
if args.len() != 2 {
println!("Usage: {} <tnc-address>", args[0]);
println!("where tnc-address is something like");
println!(" tnc:linuxif:vk7ntk-2");
println!(" tnc:tcpkiss:192.168.0.1:8001");
std::process::exit(1);
}
let addr = args[1].parse::<TncAddress>()?;
let tnc = Tnc::open(&addr)?;
let receiver = tnc.incoming();
while let Ok(frame) = receiver.recv().unwrap() {
println!("{}", OffsetDateTime::now_utc());
println!("{}", frame);
}
Ok(())
}
It produces output like the following. Note that it must be run with sudo
when
using the Linux interface.
$ sudo ./target/debug/examples/listen tnc:linuxif:vk7ntk-2
2020-02-02 21:51:11.017220715 +11:00
Source VK7NTK-1
Destination IDENT
Data "hello this is a test"
The above is the Display
implementation for Ax25Frame
- full protocol information
is available through its fields which are not printed here.
Planned features:
kissattach