rusty_esp_audio-core 0.1.1

The pure no_std + alloc core of rusty_esp_audio: types, traits and algorithms with no drivers, no allocator and no product types. forbid(unsafe).
Documentation
1
2
3
4
5
6
7
8
9
10
//! Framing and conversion: `esp_audio_codec`'s PCM/ADPCM remade, plus WAV
//! headers, plus FLAC through the house `rusty_flac` behind the `flac`
//! feature (the one allocating module). Lossy codecs are a measured decision
//! (A4).

pub mod adpcm_ima;
#[cfg(feature = "flac")]
pub mod flac;
pub mod pcm;
pub mod wav;