]> code.octet-stream.net Git - m17rt/blobdiff - m17core/src/address.rs
RTLSDR input via rtl_fm
[m17rt] / m17core / src / address.rs
index 48745b2941e320e307e8a95b4342a13ebe24d1d9..a224000d07e2c266491d15c55d2f3fe7c42ca707 100755 (executable)
@@ -13,7 +13,7 @@ pub enum Address {
 #[derive(Debug, Clone, PartialEq, Eq)]
 pub struct Callsign(pub [u8; 9]);
 
-static ALPHABET: [u8; 40] = [
+pub static ALPHABET: [u8; 40] = [
     b' ', b'A', b'B', b'C', b'D', b'E', b'F', b'G', b'H', b'I', b'J', b'K', b'L', b'M', b'N', b'O',
     b'P', b'Q', b'R', b'S', b'T', b'U', b'V', b'W', b'X', b'Y', b'Z', b'0', b'1', b'2', b'3', b'4',
     b'5', b'6', b'7', b'8', b'9', b'-', b'/', b'.',