mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-09-16 11:32:57 +00:00
Added tetra rx ext app (#3257)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
namespace ui::external_app::tetra_rx {
|
||||
|
||||
class Viterbi {
|
||||
public:
|
||||
int decode_cch(
|
||||
const uint8_t* mother,
|
||||
uint32_t n_info,
|
||||
uint8_t* bits,
|
||||
uint8_t* trace_buffer);
|
||||
};
|
||||
|
||||
} // namespace ui::external_app::tetra_rx
|
||||
Reference in New Issue
Block a user