#pragma once #include "debug_sketch.h" #ifdef CONFIG_ENABLE_TELEINFO #include int TeleinfoSetup(); //int TeleinfoProcess(); int TeleinfoProcess(std::vector &batchInfo); #else typedef struct _ValueList { } ValueList; int TeleinfoSetup() { SKETCH_DEBUG_PRINTLN("Teleinfo is disabled at build time"); return -1; }; //int TeleinfoProcess(){ int TeleinfoProcess(std::vector &){ return 0; }; #endif