From bd1990c3fce38cb107bce5ec98e7c2b40ba0b3e8 Mon Sep 17 00:00:00 2001 From: Manuel Pitz Date: Wed, 23 Jun 2021 20:39:18 +0200 Subject: [PATCH] dft: select dumping of full dft mem with ifdef --- lib/hooks/dft.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/hooks/dft.cpp b/lib/hooks/dft.cpp index ac639c129..3660205ca 100644 --- a/lib/hooks/dft.cpp +++ b/lib/hooks/dft.cpp @@ -141,14 +141,14 @@ public: if (logger->level() <= SPDLOG_LEVEL_DEBUG) { #ifdef DFT_MEM_DUMP - //origSigSync = std::make_shared("/tmp/plot/origSigSync"); - //windowdSigSync = std::make_shared("/tmp/plot/windowdSigSync"); - //ppsSigSync = std::make_shared("/tmp/plot/ppsSigSync"); + origSigSync = std::make_shared("/tmp/plot/origSigSync"); + windowdSigSync = std::make_shared("/tmp/plot/windowdSigSync"); + ppsSigSync = std::make_shared("/tmp/plot/ppsSigSync"); #endif phasorPhase = std::make_shared("/tmp/plot/phasorPhase"); phasorAmplitude = std::make_shared("/tmp/plot/phasorAmplitude"); phasorFreq = std::make_shared("/tmp/plot/phasorFreq"); - ppsSigSync = std::make_shared("/tmp/plot/ppsSigSync"); + } }