kgoba-ft8_lib/ft8/pack.h

12 wiersze
277 B
C
Czysty Zwykły widok Historia

2018-10-29 08:17:36 +00:00
#pragma once
#include <stdint.h>
namespace ft8 {
2018-10-29 08:17:36 +00:00
// 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 13:28:46 +00:00
int pack77(const char *msg, uint8_t *c77);
2018-10-29 08:17:36 +00:00
}