| 1049 | } |
| 1050 | |
| 1051 | bool CCECCommandHandler::TransmitInactiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress) |
| 1052 | { |
| 1053 | cec_command command; |
| 1054 | cec_command::Format(command, iInitiator, CECDEVICE_TV, CEC_OPCODE_INACTIVE_SOURCE); |
| 1055 | command.parameters.PushBack((iPhysicalAddress >> 8) & 0xFF); |
| 1056 | command.parameters.PushBack(iPhysicalAddress & 0xFF); |
| 1057 | |
| 1058 | return Transmit(command, false, false); |
| 1059 | } |
| 1060 | |
| 1061 | bool CCECCommandHandler::TransmitMenuState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_menu_state menuState, bool bIsReply) |
| 1062 | { |
no test coverage detected