kgoba-ft8_lib/libs/libft8/include/ft8_pack.h

12 wiersze
307 B
C
Czysty Zwykły widok Historia

2021-08-05 10:56:35 +00:00
#ifndef _INCLUDE_PACK_H_
#define _INCLUDE_PACK_H_
2018-10-29 08:17:36 +00:00
#include <stdint.h>
2021-08-05 10:56:35 +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)
int pack77(const char *msg, uint8_t *c77);
2018-10-29 08:17:36 +00:00
2021-08-05 10:56:35 +00:00
#endif // _INCLUDE_PACK_H_