2018-12-28 04:33:07 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-01-03 02:54:18 +08:00
|
|
|
namespace ft8 {
|
|
|
|
|
2019-11-10 15:04:00 +08:00
|
|
|
struct MagArray {
|
|
|
|
int num_blocks; // number of total blocks (symbols)
|
|
|
|
int num_bins; // number of FFT bins
|
|
|
|
int time_osr; // number of time subdivisions
|
|
|
|
int freq_osr; // number of frequency subdivisions
|
|
|
|
uint8_t * mag; // FFT magnitudes as [blocks][time_sub][freq_sub][num_bins]
|
|
|
|
};
|
|
|
|
|
2018-12-28 04:33:07 +08:00
|
|
|
struct Candidate {
|
|
|
|
int16_t score;
|
|
|
|
int16_t time_offset;
|
|
|
|
int16_t freq_offset;
|
|
|
|
uint8_t time_sub;
|
|
|
|
uint8_t freq_sub;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Localize top N candidates in frequency and time according to their sync strength (looking at Costas symbols)
|
|
|
|
// We treat and organize the candidate list as a min-heap (empty initially).
|
2019-11-10 15:04:00 +08:00
|
|
|
int find_sync(const MagArray * power, const uint8_t *sync_map, int num_candidates, Candidate *heap);
|
2018-12-28 04:33:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Compute log likelihood log(p(1) / p(0)) of 174 message bits
|
|
|
|
// for later use in soft-decision LDPC decoding
|
2019-11-10 15:04:00 +08:00
|
|
|
void extract_likelihood(const MagArray *power, const Candidate & cand, const uint8_t *code_map, float *log174);
|
2019-01-03 02:54:18 +08:00
|
|
|
|
|
|
|
}
|