]> code.octet-stream.net Git - m17rt/blobdiff - m17app/src/error.rs
RTLSDR input via rtl_fm
[m17rt] / m17app / src / error.rs
index f7079ca3ca8afe6cbe6a7e92c13285a91602760e..36d5ac07f95943554760666a2d688f5ed37b798a 100644 (file)
@@ -7,4 +7,13 @@ pub enum M17Error {
 
     #[error("given callsign is {0} characters long; maximum is 9")]
     CallsignTooLong(usize),
+
+    #[error("error during soundcard initialisation")]
+    SoundcardInit,
+
+    #[error("unable to locate sound card '{0}' - is it in use?")]
+    SoundcardNotFound(String),
+
+    #[error("unable to set up RTL-SDR receiver")]
+    RtlSdrInit,
 }