catalina-engine 0.1.0

Audio and synth DSP framework for creating audio processing and music platforms on embedded platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(all(not(feature = "std"), feature = "alloc"))]
extern crate alloc;

// Needs to be first module in list.
mod fmt;

pub mod prelude;

pub mod core;
pub mod music;

pub mod audio;
pub mod instrument;
pub mod sequence;