satdump/src-core/common/codings/manchester.h
2021-05-21 23:07:07 +02:00

5 lines
No EOL
129 B
C++
Executable file

#pragma once
#include <cstdint>
// G. E. Thomas Manchester decoder
int manchesterDecoder(uint8_t *in, int length, uint8_t *out);