A Rusty interface for the RN2903 LoRa module's serial protocol
Go to file
Leonora Tindall 1a7f8c4ab1
This is 0.2 🎉
2020-01-01 11:34:40 -08:00
docu Add documentation PDFs 2019-12-29 12:12:03 -08:00
examples Add LoRa and FSK packet reception 2020-01-01 11:32:35 -08:00
src Add LoRa and FSK packet reception 2020-01-01 11:32:35 -08:00
.gitignore Basic SerialPort wrapper 2019-12-28 08:29:09 -08:00
CHANGELOG.md This is 0.2 🎉 2020-01-01 11:34:40 -08:00
CONTRIBUTING.md Formalize release process 2019-12-29 12:47:18 -08:00
Cargo.lock This is 0.2 🎉 2020-01-01 11:34:40 -08:00
Cargo.toml This is 0.2 🎉 2020-01-01 11:34:40 -08:00
LICENSE.html Add GNU GPL v3 license, and package metadata 2019-12-29 11:56:33 -08:00
README.md Add LoRa and FSK packet reception 2020-01-01 11:32:35 -08:00

README.md

RN2903

A Rusty interface for the RN2903 LoRa module's serial protocol

The RN2903 is a LoRa and FSK transciever for the 915MHz ISM band, commonly used in USB devices like the LoStik.

This crate provides a safe, idiomatic interface using cross-platform native serial functionality via serialport. This supports, for instance, a LoStik connected to a USB TTY or virtual COM port, or a RN2903 connected via a TTL serial interface.

This crate is available under the GNU General Public License, version 3.0 only, and does not directly depend on unstable crates.

Example

For instance, here is a simple program which dumps all LoRa packets received.

use rn2903::{Rn2903, ModulationMode};

fn main() {
    let mut txvr = Rn2903::new_at("/dev/ttyUSB0")
        .expect("Could not open device. Error");
    txvr.mac_pause().unwrap();
    txvr.radio_set_modulation_mode(ModulationMode::LoRa).unwrap();
    loop {
        if let Some(packet) = txvr.radio_rx(65535).unwrap() {
            println!("{:?}", packet);
        }
    }
}

Module Documentation

This repository reproduces the relevant documents for the RN2903 module at command_reference-40001811B.pdf and datasheet-DS5000239H.pdf.