/demod_fm.rs

Simple FM demodulator using phase difference approximation

Primary LanguageRustMIT LicenseMIT

demod_fm.rs -- FM signal demodulator

Documentation

This crates provides a simple FM signal demodulator for use with software radio.

Usage

This crate can be used through cargo by adding it as a dependency in Cargo.toml:

[dependencies]
demod_fm = "1.0.0"

and importing it in the crate root:

extern crate demod_fm;