1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

dft hook: fix singal names modification

This commit is contained in:
Manuel Pitz 2021-07-12 12:39:43 +02:00
parent b61c081b9e
commit a6478f94e2

View file

@ -169,6 +169,7 @@ public:
virtual void prepare()
{
MultiSignalHook::prepare();
dumperEnable = logger->level() <= SPDLOG_LEVEL_DEBUG;
signal_list_clear(&signals);
@ -234,6 +235,7 @@ public:
virtual void parse(json_t *json)
{
MultiSignalHook::parse(json);
int ret;
int windowSizeFactor = 1;
@ -242,7 +244,6 @@ public:
const char *freqEstimateTypeC = nullptr;
json_error_t err;
json_t *jsonChannelList = nullptr;
assert(state != State::STARTED);
@ -259,7 +260,6 @@ public:
"padding_type", &paddingTypeC,
"freq_estimate_type", &freqEstimateTypeC,
"sync", &sync,
"signal_index", &jsonChannelList,
"pps_index", &ppsIndex
);
if (ret)