diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-05-19 15:06:43 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-05-19 15:06:43 +0200 |
commit | 94655a6999731f3d76ce21b7ad76568b9657e6ea (patch) | |
tree | 13c3b1ca69f3aac7563c241e0bd4e7385564e89d /tracker-stm32/src/compression.h | |
parent | 41b68b70309ed40565204d2d8985f708151bb9d6 (diff) | |
download | lora-aprs-hb9egm-94655a6999731f3d76ce21b7ad76568b9657e6ea.tar.gz lora-aprs-hb9egm-94655a6999731f3d76ce21b7ad76568b9657e6ea.tar.bz2 lora-aprs-hb9egm-94655a6999731f3d76ce21b7ad76568b9657e6ea.zip |
Add text message
Diffstat (limited to 'tracker-stm32/src/compression.h')
-rw-r--r-- | tracker-stm32/src/compression.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tracker-stm32/src/compression.h b/tracker-stm32/src/compression.h new file mode 100644 index 0000000..064369b --- /dev/null +++ b/tracker-stm32/src/compression.h @@ -0,0 +1,9 @@ +#pragma once +#include "uintwide_t.h" + +uint32_t encodeCallsign(const char *callsign); + +void ax25_base91enc(char *s, uint8_t n, uint32_t v); + +math::wide_integer::uint512_t encodetttt(const char *s); + |