Testing external clock detection and auto-switch

Simplified audio spectrum computation and transfer
ACARS RX in debug mode
Disabled ABI warnings
Updated binary
This commit is contained in:
furrtek
2018-06-12 07:55:12 +01:00
parent dc5d6fef70
commit 609235b19f
30 changed files with 318 additions and 182 deletions
+11
View File
@@ -39,6 +39,17 @@ private:
uint_fast8_t last { 0 };
};
class ACARSDecoder {
public:
uint_fast8_t operator()(const uint_fast8_t symbol) {
last ^= (~symbol & 1);
return last;
}
private:
uint_fast8_t last { 0 };
};
} /* namespace symbol_coding */
#endif/*__SYMBOL_CODING_H__*/