| 83 | } |
| 84 | |
| 85 | bool CANCommandHandler::PowerOn(const cec_logical_address iInitiator, const cec_logical_address iDestination) |
| 86 | { |
| 87 | if (iDestination == CECDEVICE_AUDIOSYSTEM) |
| 88 | { |
| 89 | /* Samsung AVR devices need to be woken up with key CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION */ |
| 90 | return TransmitKeypress(iInitiator, iDestination, CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION) && |
| 91 | TransmitKeyRelease(iInitiator, iDestination); |
| 92 | } |
| 93 | |
| 94 | return CCECCommandHandler::PowerOn(iInitiator, iDestination); |
| 95 | } |
| 96 | |
| 97 | int CANCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command) |
| 98 | { |
nothing calls this directly
no outgoing calls
no test coverage detected