Defines all types of mcuxClEls_Types. More...
Data Structures | |
| union | mcuxClEls_KeyProp_t |
| Type for ELS key store key properties. More... | |
Macros | |
| #define | utlpsms |
| Deprecated name for mcuxClEls_KeyProp_t.utlspms. | |
Typedefs | |
| typedef uint32_t | mcuxClEls_Status_t |
| Type for ELS driver status codes. | |
| typedef mcuxClEls_Status_t | mcuxClEls_Status_Protected_t |
| Deprecated type for ELS driver protected status codes. | |
| typedef uint32_t | mcuxClEls_KeyIndex_t |
| Type for ELS keystore indices. | |
| typedef mcuxClEls_Status_t(* | mcuxClEls_TransferToRegisterFunction_t) (uint32_t volatile *pDestRegister, uint8_t const *pSource, size_t sourceLength, void *pCallerData) |
| Function type for transfer of data to a memory-mapped register. | |
Defines all types of mcuxClEls_Types.
| #define utlpsms |
Deprecated name for mcuxClEls_KeyProp_t.utlspms.
| typedef uint32_t mcuxClEls_Status_t |
Type for ELS driver status codes.
Deprecated type for ELS driver protected status codes.
| typedef uint32_t mcuxClEls_KeyIndex_t |
Type for ELS keystore indices.
| typedef mcuxClEls_Status_t(* mcuxClEls_TransferToRegisterFunction_t) (uint32_t volatile *pDestRegister, uint8_t const *pSource, size_t sourceLength, 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.
| [out] | pDestRegister | Memory-mapped register that the output data shall be written to |
| [in] | pSource | Array containing the input data |
| [in] | sourceLength | 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 |