22 lines
782 B
C++
22 lines
782 B
C++
#include "RealTimeRunDataCommand.h"
|
|
#include "inverters/InverterAbstract.h"
|
|
|
|
RealTimeRunDataCommand::RealTimeRunDataCommand(uint64_t target_address, uint64_t router_address, time_t time)
|
|
: MultiDataCommand(target_address, router_address)
|
|
{
|
|
setTime(time);
|
|
setDataType(0x0b);
|
|
setTimeout(200);
|
|
}
|
|
|
|
void RealTimeRunDataCommand::handleResponse(InverterAbstract* inverter, fragment_t fragment[], uint8_t max_fragment_id)
|
|
{
|
|
// Move all fragments into target buffer
|
|
uint8_t offs = 0;
|
|
inverter->Statistics()->clearBuffer();
|
|
for (uint8_t i = 0; i < max_fragment_id; i++) {
|
|
inverter->Statistics()->appendFragment(offs, fragment[i].fragment, fragment[i].len);
|
|
offs += (fragment[i].len);
|
|
}
|
|
inverter->Statistics()->setLastUpdate(millis());
|
|
} |