mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-09-10 08:39:29 +00:00
17 lines
282 B
C++
17 lines
282 B
C++
#pragma once
|
|
|
|
#include "tetra_bits.hpp"
|
|
|
|
namespace ui::external_app::tetra_rx {
|
|
|
|
class Interleave {
|
|
public:
|
|
static void block_deinterleave(
|
|
BitVector& in,
|
|
BitVector& out,
|
|
uint32_t K,
|
|
uint32_t a);
|
|
};
|
|
|
|
} // namespace ui::external_app::tetra_rx
|