From a2c34c87ddab8ff9b05426d80ec62597c1e8f407 Mon Sep 17 00:00:00 2001 From: hpanther <2348625+hpanther@users.noreply.github.com> Date: Sun, 15 Nov 2020 11:48:16 +0100 Subject: [PATCH] Fix type for esp32 --- src/devices/solar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/solar.cpp b/src/devices/solar.cpp index 957a0ece1..2adc8c52b 100644 --- a/src/devices/solar.cpp +++ b/src/devices/solar.cpp @@ -328,7 +328,7 @@ void Solar::process_SM100SolarCircuitConfig(std::shared_ptr tele void Solar::process_SM100ParamCfg(std::shared_ptr telegram) { uint16_t t_id; uint8_t of; - int32 min,def,max,cur; + int32_t min,def,max,cur; telegram->read_value(t_id, 1); telegram->read_value(of, 3); telegram->read_value(min, 5);