cube-kl/firmware/include/wspr.h

17 lines
265 B
C
Raw Normal View History

2018-07-08 02:06:25 +02:00
#ifndef __WSPR_H__
#define __WSPR_H__ __WSPR_H__
#include <stdint.h>
#include "si5351.h"
2018-07-15 00:20:41 +02:00
#define WSPR_LENGTH 162
2018-07-08 02:06:25 +02:00
2018-07-15 00:20:41 +02:00
void wspr_encode(char *call, char *loc, uint8_t power, uint8_t *buffer);
2018-07-08 02:06:25 +02:00
void wspr_transmit(enum si5351_multisynth synth, uint8_t *msg);
2018-07-15 00:20:41 +02:00
2018-07-08 02:06:25 +02:00
#endif