2018-10-29 16:17:36 +08:00
|
|
|
#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)
|
2018-10-29 21:28:46 +08:00
|
|
|
int pack77(const char *msg, uint8_t *c77);
|
2018-10-29 16:17:36 +08:00
|
|
|
|
|
|
|
};
|