Fix type for esp32

This commit is contained in:
hpanther
2020-11-15 11:48:16 +01:00
parent 91b8dcaade
commit a2c34c87dd

View File

@@ -328,7 +328,7 @@ void Solar::process_SM100SolarCircuitConfig(std::shared_ptr<const Telegram> tele
void Solar::process_SM100ParamCfg(std::shared_ptr<const Telegram> telegram) { void Solar::process_SM100ParamCfg(std::shared_ptr<const Telegram> telegram) {
uint16_t t_id; uint16_t t_id;
uint8_t of; uint8_t of;
int32 min,def,max,cur; int32_t min,def,max,cur;
telegram->read_value(t_id, 1); telegram->read_value(t_id, 1);
telegram->read_value(of, 3); telegram->read_value(of, 3);
telegram->read_value(min, 5); telegram->read_value(min, 5);