Feature/sound (#389)

* WIP sound lib

* basically finishes sound interface, still needs circle of fifths for updates etc.

* finishes sound interface, includes light testing

* fixes loops to use euclidian remainder

* implements locking for the sound interface

* stop sleeping on blocks
This commit is contained in:
Keagan McClelland
2021-08-12 10:20:36 -06:00
committed by GitHub
parent a6e668fffa
commit acd72060e9
5 changed files with 532 additions and 1 deletions

View File

@@ -48,6 +48,7 @@ pub enum ErrorKind {
Uninitialized = 40,
ParseNetAddress = 41,
ParseSshKey = 42,
SoundError = 43,
}
impl ErrorKind {
pub fn as_str(&self) -> &'static str {
@@ -95,6 +96,7 @@ impl ErrorKind {
Uninitialized => "Uninitialized",
ParseNetAddress => "Net Address Parsing Error",
ParseSshKey => "SSH Key Parsing Error",
SoundError => "Sound Interface Error",
}
}
}