![]() |
RA Flexible Software Package Documentation
Release v5.8.0
|
|
Functions | |
fsp_err_t | R_CEC_Open (cec_ctrl_t *const p_ctrl, cec_cfg_t const *const p_cfg) |
fsp_err_t | R_CEC_MediaInit (cec_ctrl_t *const p_ctrl, cec_addr_t local_address) |
fsp_err_t | R_CEC_Close (cec_ctrl_t *const p_ctrl) |
fsp_err_t | R_CEC_Write (cec_ctrl_t *const p_ctrl, cec_message_t const *const p_message, uint32_t message_size) |
fsp_err_t | R_CEC_StatusGet (cec_ctrl_t *const p_ctrl, cec_status_t *const p_status) |
fsp_err_t | R_CEC_CallbackSet (cec_ctrl_t *const p_ctrl, void(*p_callback)(cec_callback_args_t *), void const *const p_context, cec_callback_args_t *const p_callback_memory) |
Driver for the CEC peripheral on RA MCUs. This module implements the CEC Interface.
The HDMI CEC HAL module provides a high-level API for CEC applications and supports the CEC peripheral available on RA microcontroller hardware. A user-callback function must be defined that the driver will invoke when data received, transmission complete, or error interrupts are received. The callback is passed a parameter which indicates the event as well as received data (if available).
Configuration | Options | Default | Description |
---|---|---|---|
Parameter Checking |
| Default (BSP) | If selected code for parameter checking is included in the build. |
CEC Message Max Data Size | CEC message max data size must be a positive integer | 14 | Maximum Data Size for CEC Message Transmission/Reception. |
Configuration | Options | Default | Description |
---|---|---|---|
General | |||
Control Configuration | |||
Bit Width Timing | |||
Interrupts |
The CEC peripheral uses the CECCLK or PCLKB as its clock source. To set the PCLKB frequency, use the Clocks tab of the RA Configuration editor.
A CEC channel uses one data pin - CECIO for data transmission and reception.
The output type for each pin should be set to n-ch open drain for most hardware designs. This can be configured in Pins tab of the RA Configuration editor by selecting the pin under Pin Selection->Ports.
The CEC standard provides 13 device addresses that may be requested based on a device's primary function. Use R_CEC_MediaInit
to request a specific address before starting communication with other devices.
Developers should be aware of the following limitations when using the CEC module:
R_CEC_MediaInit
may return FSP_ERR_IN_USE
for up to 45 milliseconds after R_CEC_Open
while the hardware initializes.This is a basic example of minimal use of the CEC in an application.
fsp_err_t R_CEC_Open | ( | cec_ctrl_t *const | p_ctrl, |
cec_cfg_t const *const | p_cfg | ||
) |
Open and configure the CEC module for operation.
Example:
FSP_SUCCESS | CEC Module opened successfully. |
FSP_ERR_ALREADY_OPEN | Driver already open. |
FSP_ERR_ASSERTION | An input argument is invalid. |
FSP_ERR_IRQ_BSP_DISABLED | Interrupts are not enabled. |
fsp_err_t R_CEC_MediaInit | ( | cec_ctrl_t *const | p_ctrl, |
cec_addr_t | local_address | ||
) |
Allocate provided CEC Local Address and Initialize the CEC module for operation.
Example:
FSP_SUCCESS | CEC Module Initialized successfully. |
FSP_ERR_ASSERTION | An input argument is invalid or callback has not been set. |
FSP_ERR_NOT_OPEN | Control block not open. |
FSP_ERR_IN_USE | HDMI CEC Bus is currently in use. Try again later. |
fsp_err_t R_CEC_Close | ( | cec_ctrl_t *const | p_ctrl | ) |
Close the CEC module.
FSP_SUCCESS | CEC Module closed successfully. |
FSP_ERR_ASSERTION | An input argument is invalid. |
fsp_err_t R_CEC_Write | ( | cec_ctrl_t *const | p_ctrl, |
cec_message_t const *const | p_message, | ||
uint32_t | message_size | ||
) |
Write data to the CEC bus. Data transmission is asynchronous. Provided message buffer should not be modified until transmission is complete.
Data Transmission follows the pattern defined be the HDMI CEC Specification:
Data | Description | Size |
---|---|---|
Start Bit | Managed by Hardware, per config | N/A |
Header Block | Source/Destination Identifier | 1 Byte |
Data Block 1 | Opcode Value (Optional) | 1 Byte |
Data Block 2 | Operands (Optional) | Variable (0-14 Bytes Typical) |
Example:
FSP_SUCCESS | Operation succeeded. |
FSP_ERR_NOT_OPEN | Control block not open. |
FSP_ERR_NOT_INITIALIZED | Module has not been successfully initialized. |
FSP_ERR_ASSERTION | An input argument is invalid. |
FSP_ERR_INVALID_SIZE | Invalid message size. |
FSP_ERR_IN_USE | HDMI CEC Bus is currently in use. Try again later. |
fsp_err_t R_CEC_StatusGet | ( | cec_ctrl_t *const | p_ctrl, |
cec_status_t *const | p_status | ||
) |
Provides the state and status information according to the provided CEC control instance.
FSP_SUCCESS | Operation succeeded. |
FSP_ERR_NOT_OPEN | Control block not open. |
FSP_ERR_ASSERTION | An input argument is invalid. |
fsp_err_t R_CEC_CallbackSet | ( | cec_ctrl_t *const | p_ctrl, |
void(*)(cec_callback_args_t *) | p_callback, | ||
void const *const | p_context, | ||
cec_callback_args_t *const | p_callback_memory | ||
) |
Updates the user callback with the option to provide memory for the callback argument structure. Implements cec_api_t::callbackSet.
FSP_SUCCESS | Callback updated successfully. |
FSP_ERR_ASSERTION | An input argument is invalid. |
FSP_ERR_NOT_OPEN | The control block has not been opened. |
FSP_ERR_NO_CALLBACK_MEMORY | p_callback is non-secure and p_callback_memory is either secure or NULL. |