| 428 | } |
| 429 | |
| 430 | bool ProcessCommandTX(ICECAdapter *parser, const std::string &command, std::string &arguments) |
| 431 | { |
| 432 | if (command == "tx" || command == "txn") |
| 433 | { |
| 434 | std::string strvalue; |
| 435 | cec_command bytes = parser->CommandFromString(arguments.c_str()); |
| 436 | |
| 437 | if (command == "txn") |
| 438 | bytes.transmit_timeout = 0; |
| 439 | |
| 440 | parser->Transmit(bytes); |
| 441 | |
| 442 | return true; |
| 443 | } |
| 444 | |
| 445 | return false; |
| 446 | } |
| 447 | |
| 448 | bool ProcessCommandON(ICECAdapter *parser, const std::string &command, std::string &arguments) |
| 449 | { |
no test coverage detected