File nprmeas_core.h¶
File List > inc > nprmeas > nprmeas_core.h
Go to the documentation of this file
#ifndef NPRMEAS_CORE_H
#define NPRMEAS_CORE_H
#include "clib_common.h"
#include "jm_perf.h"
#include "measure/measure_core.h"
#include "psd/psd_core.h"
#include <complex.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
psd_state_t *psd; /* shared averaging PSD core (window+FFT+avg) */
float *pwr; /* metric working buffer, one-sided power */
double enbw; /* window equivalent noise bandwidth (bins) */
double beta; /* auto-selected Kaiser shape (from DR target) */
size_t spur_guard_bins; /* min notch keep-out (bins) from window skirt */
size_t n; /* capture / frame length */
size_t nfft; /* zero-padded transform length */
double fs; /* sample rate (Hz) */
} nprmeas_state_t;
nprmeas_state_t *nprmeas_create(size_t n, double fs, double full_scale,
size_t bits, double dynamic_range_db);
void nprmeas_destroy(nprmeas_state_t *state);
void nprmeas_reset(nprmeas_state_t *state);
npr_meas_t nprmeas_analyze(nprmeas_state_t *state, const float *x, size_t n_in,
double active_lo, double active_hi, double notch_lo,
double notch_hi, double guard_hz);
size_t nprmeas_spectrum_dbfs_max_out(nprmeas_state_t *state);
size_t nprmeas_spectrum_dbfs(nprmeas_state_t *state, const float *x,
size_t x_len, float *out);
#ifdef __cplusplus
}
#endif
#endif /* NPRMEAS_CORE_H */