wut
v1.7.0
Wii U Toolchain
|
Functions | |
BOOL | AVMCECInit (void) |
Initializes CEC. More... | |
void | AVMEnableCEC (void) |
Enable CEC. More... | |
void | AVMDisableCEC (void) |
Disable CEC. More... | |
BOOL | AVMCECSendCommand (TVECECLogicalAddress destination, TVECECOpCode opCode, uint8_t *parameters, uint8_t numParameters) |
Sends a CEC command. More... | |
BOOL | AVMCECReceiveCommand (TVECECLogicalAddress *outInitiator, TVECECOpCode *outOpCode, uint8_t *outParameters, uint8_t *outNumParameters) |
Get the last receieved CEC command. More... | |
BOOL AVMCECInit | ( | void | ) |
Initializes CEC.
TRUE
on success. void AVMEnableCEC | ( | void | ) |
Enable CEC.
void AVMDisableCEC | ( | void | ) |
Disable CEC.
BOOL AVMCECSendCommand | ( | TVECECLogicalAddress | destination, |
TVECECOpCode | opCode, | ||
uint8_t * | parameters, | ||
uint8_t | numParameters | ||
) |
Sends a CEC command.
destination | Logical address of the device where the command should be sent to. |
opCode | The op code of the command to send. |
parameters | Pointer to optional command parameters. |
numParameters | The amount of additional parameters. |
TRUE
on success. BOOL AVMCECReceiveCommand | ( | TVECECLogicalAddress * | outInitiator, |
TVECECOpCode * | outOpCode, | ||
uint8_t * | outParameters, | ||
uint8_t * | outNumParameters | ||
) |
Get the last receieved CEC command.
outInitiator | Pointer to store the logical address of the initiator of the command to. |
outOpCode | Pointer to store the op code of the command to. |
outParameters | Pointer to store additional parameters to. |
numParameters | Pointer to store the amount of additional parameters to. |
TRUE
on success.