libsstvenc
Asynchronous Analogue SSTV encoder
Loading...
Searching...
No Matches
sstvfreq.h
Go to the documentation of this file.
1#ifndef _SSTVENC_SSTVFREQ_H
2#define _SSTVENC_SSTVFREQ_H
3
11/*
12 * © Stuart Longland VK4MSL
13 * SPDX-License-Identifier: MIT
14 */
15
16#include <stdint.h>
17
18#define SSTVENC_FREQ_VIS_BIT1 (1100)
19#define SSTVENC_FREQ_SYNC (1200)
20#define SSTVENC_FREQ_VIS_BIT0 (1300)
21#define SSTVENC_FREQ_BLACK (1500)
22#define SSTVENC_FREQ_VIS_START (1900)
23#define SSTVENC_FREQ_WHITE (2300)
24
25#define SSTVENC_FREQ_FSKID_BIT1 (1900)
26#define SSTVENC_FREQ_FSKID_BIT0 (2100)
27
36uint16_t sstvenc_level_freq(uint8_t level);
37
43#endif
uint16_t sstvenc_level_freq(uint8_t level)
Definition sstvfreq.c:13