![]() |
MAX32655 Peripheral Driver API
Peripheral Driver API for the MAX32655
|
Modules | |
SEMA_Registers | |
Typedefs | |
typedef void(* | mxc_sema_complete_cb_t) (int result) |
Functions | |
int | MXC_SEMA_Init (void) |
int | MXC_SEMA_GetSema (unsigned sema) |
int | MXC_SEMA_CheckSema (unsigned sema) |
uint32_t | MXC_SEMA_Status (void) |
void | MXC_SEMA_FreeSema (unsigned sema) |
int | MXC_SEMA_Shutdown (void) |
int | MXC_SEMA_InitBoxes (void) |
int | MXC_SEMA_ReadBox (uint8_t *data, unsigned len) |
int | MXC_SEMA_WriteBox (const uint8_t *data, unsigned len) |
int | MXC_SEMA_Handler (void) |
int | MXC_SEMA_ReadBoxAsync (mxc_sema_complete_cb_t cb, uint8_t *data, unsigned len) |
int | MXC_SEMA_WriteBoxAsync (mxc_sema_complete_cb_t cb, const uint8_t *data, unsigned len) |
typedef void(* mxc_sema_complete_cb_t) (int result) |
The callback routine used by the MXC_SEMA_ReadBoxAsync() and MXC_SEMA_WriteBoxAsync functions to indicate the operation has completed.
result | The error code (if any) of the read/write operation. See Error Codes for the list of error codes. |
int MXC_SEMA_CheckSema | ( | unsigned | sema | ) |
Check a semaphore.
sema | Number of semaphore you want to check. |
void MXC_SEMA_FreeSema | ( | unsigned | sema | ) |
Frees the semaphore.
sema | Number of semaphore want to free. |
int MXC_SEMA_GetSema | ( | unsigned | sema | ) |
Attempt to get a semaphore.
sema | Number of semaphore you are trying to get. |
int MXC_SEMA_Handler | ( | void | ) |
Semaphore interrupt handler.
int MXC_SEMA_Init | ( | void | ) |
Initialize the semaphore peripheral.
int MXC_SEMA_InitBoxes | ( | void | ) |
Initialize the mailboxes.
int MXC_SEMA_ReadBox | ( | uint8_t * | data, |
unsigned | len | ||
) |
Read from the mailbox.
Will only read data currently available.
data | Buffer to store the data from the mailbox. |
len | Number of bytes to read from the mailbox. |
int MXC_SEMA_ReadBoxAsync | ( | mxc_sema_complete_cb_t | cb, |
uint8_t * | data, | ||
unsigned | len | ||
) |
Read asynchronously from the mailbox.
Non-blocking read. Will only read data currently available.
cb | Callback function, called once the read is complete. |
data | Buffer to store the data from the mailbox. |
len | Number of bytes to read from the mailbox. |
int MXC_SEMA_Shutdown | ( | void | ) |
Shutdown the semaphore peripheral.
uint32_t MXC_SEMA_Status | ( | void | ) |
Check all semaphores.
int MXC_SEMA_WriteBox | ( | const uint8_t * | data, |
unsigned | len | ||
) |
Write to the mailbox.
Will only write in the space currently available.
data | Data to write to the mailbox. |
len | Number of bytes to write to the mailbox. |
int MXC_SEMA_WriteBoxAsync | ( | mxc_sema_complete_cb_t | cb, |
const uint8_t * | data, | ||
unsigned | len | ||
) |
Write asynchronously to the mailbox.
cb | Callback function, called once the write is complete. |
data | Data to write to the mailbox. |
len | Number of bytes to write to the mailbox. |