This repository has been archived on 2024-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
SSTV-Decoder/include/sstv.h
liuyihui 109c1b74b0 style: macro location;
fix: hanning window width
2023-04-28 14:45:46 +08:00

20 lines
349 B
C

#pragma once
#include "derivative.h"
#include "fft/fft.h"
#define FS 20000
#define RE FS / FFT_N
#define BUF_M 256
#define FREQ_BIT1 1100
#define FREQ_SYNC 1200
#define FREQ_BIT0 1300
#define FREQ_START 1900
#define FREQ_BLACK 1500
#define FREQ_WHITE 4000
#define FREQ_RANGE FREQ_WHITE - FREQ_BLACK
#define COLOR_SCALE 64
uint8_t decode_sstv();