1 2 3 4 5
- char _len = rsp_buff[3]; + uint8_t _len = rsp_buff[3]; if (_len > 0) - node.setSerial(hw::strip(string(rsp_buff + 4, _len))); + node.setSerial(hw::strip(string((char *)rsp_buff + 4, _len)));