Defines all types of mcuxClCss_Types.
More...
Defines all types of mcuxClCss_Types.
◆ utlpsms
◆ mcuxClCss_Status_Protected_t
Type for CSS driver protected status codes.
◆ mcuxClCss_Status_t
Type for CSS driver status codes.
◆ mcuxClCss_KeyIndex_t
Type for CSS keystore indices.
◆ mcuxClCss_TransferToRegisterFunction_t
typedef mcuxClCss_Status_t(* mcuxClCss_TransferToRegisterFunction_t) (uint32_t volatile *destRegister, uint8_t const *source, size_t size, void *pCallerData) |
Function type for transfer of data to a memory-mapped register.
This function type is used as a callback for handling data transfer from memory to a memory-mapped register. Such a function shall read data from the uint8_t
array source, and write data via a sequence of writes to destRegister
. Further specification of this function's behavior can be found in the documentation of the function that accepts this function as a callback parameter.
- Parameters
-
[out] | destRegister | Memory-mapped register that the output data shall be written to |
[in] | source | Array containing the input data |
[in] | size | Size of source in bytes |
[in,out] | pCallerData | Custom pointer that is provided by the caller and forwarded to the callback function by the operation |
- Returns
- An error code that can be any error code in MCUXCLCSS_STATUS_, see individual documentation for more information