SSTV-Decoder/include/sstv.h

22 lines
359 B
C
Raw Normal View History

2023-04-24 23:09:52 +08:00
#pragma once
2023-04-27 01:20:47 +08:00
#include <inttypes.h>
2023-04-24 23:09:52 +08:00
#define float32_t float
#define N 1024
#define FS 16000
#define RE FS / N
#define MN 256
#define FREQ_BIT1 1100
#define FREQ_SYNC 1200
#define FREQ_BIT0 1300
#define FREQ_START 1900
#define FREQ_BLACK 1500
2023-04-27 21:58:11 +08:00
#define FREQ_WHITE 4000
2023-04-24 23:09:52 +08:00
#define FREQ_RANGE FREQ_WHITE - FREQ_BLACK
2023-04-27 21:58:11 +08:00
#define COLOR_SCALE 64
2023-04-24 23:09:52 +08:00
uint8_t decode_sstv();