mirror of
https://github.com/transistorfet/moa.git
synced 2025-02-16 11:30:33 +00:00
It's better than it was but there are still minor drop outs due to a buffer underrun I think (could be other timing issues related to the update loop or something else). Right now, the audio chips just have some code to produce sine waves for testing.
15 lines
240 B
TOML
15 lines
240 B
TOML
[package]
|
|
name = "moa-common"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
tty = ["nix"]
|
|
audio = ["cpal"]
|
|
|
|
[dependencies]
|
|
moa = { path = "../../" }
|
|
nix = { version = "0.23", optional = true }
|
|
cpal = { version = "0.13", optional = true }
|
|
|