ft8_lib/ft8/pack_77.h
2018-11-02 14:03:28 +02:00

12 lines
No EOL
281 B
C++

#pragma once
#include <stdint.h>
namespace ft8_v2 {
// Pack FT8 text message into 72 bits
// [IN] msg - FT8 message (e.g. "CQ TE5T KN01")
// [OUT] c77 - 10 byte array to store the 77 bit payload (MSB first)
int pack77(const char *msg, uint8_t *c77);
};