satdump/src-core/dsp/complex_json.h
2026-03-11 07:55:32 +01:00

11 lines
No EOL
217 B
C

#pragma once
/**
* @file complex_json.h
* @brief Convert complet_t to/from nlohmann::json
*/
#include "common/dsp/complex.h"
#include "nlohmann/json.hpp"
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(complex_t, real, imag)