Lines Matching refs:command
40 std::vector<int32_t> PassThrough::send(std::vector<int32_t> command) in send() argument
47 cmdInBytes.resize(command.size()); in send()
50 std::transform(command.begin(), command.end(), cmdInBytes.begin(), in send()
62 std::vector<uint8_t> PassThrough::send(std::vector<uint8_t> command) in send() argument
74 if (command.size() >= 3) in send()
76 const uint16_t dataLen = command[1] << 8 | command[2]; in send()
78 if (command.size() > 3) in send()
83 for (; (index < 7) && (index < command.size()); ++index) in send()
85 dataString += std::format("{:02X}", command[index]); in send()
87 if (index < command.size()) in send()
94 "CMD", lg2::hex, command.front(), "INST", occInstance, "LEN", in send()
100 "CMD", command.front(), "INST", occInstance); in send()
102 CmdStatus status = occCmd.send(command, response); in send()