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