mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
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:
committed by
GitHub
parent
a6e668fffa
commit
acd72060e9
@@ -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",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user