![]() |
MAX78000 Peripheral Driver API
Peripheral Driver API for the MAX78000
|
Macros | |
#define | MXC_CRITICAL(code) |
Enumerations | |
enum | mxc_sys_reset_t |
enum | mxc_sys_periph_clock_t |
enum | mxc_sys_system_clock_t |
enum | mxc_sys_system_clock_div_t |
Functions | |
static void | MXC_SYS_Crit_Enter (void) |
static void | MXC_SYS_Crit_Exit (void) |
static int | MXC_SYS_In_Crit_Section (void) |
int | MXC_SYS_GetUSN (uint8_t *usn, uint8_t *checksum) |
int | MXC_SYS_IsClockEnabled (mxc_sys_periph_clock_t clock) |
void | MXC_SYS_ClockDisable (mxc_sys_periph_clock_t clock) |
void | MXC_SYS_ClockEnable (mxc_sys_periph_clock_t clock) |
void | MXC_SYS_RTCClockEnable (void) |
int | MXC_SYS_RTCClockDisable (void) |
int | MXC_SYS_ClockSourceEnable (mxc_sys_system_clock_t clock) |
int | MXC_SYS_ClockSourceDisable (mxc_sys_system_clock_t clock) |
mxc_sys_system_clock_div_t | MXC_SYS_GetClockDiv (void) |
void | MXC_SYS_SetClockDiv (mxc_sys_system_clock_div_t div) |
int | MXC_SYS_Clock_Select (mxc_sys_system_clock_t clock) |
int | MXC_SYS_Clock_Timeout (uint32_t ready) |
void | MXC_SYS_Reset_Periph (mxc_sys_reset_t reset) |
void | MXC_SYS_RISCVRun (void) |
void | MXC_SYS_RISCVShutdown (void) |
uint32_t | MXC_SYS_RiscVClockRate (void) |
int | MXC_SYS_LockDAP_Permanent (void) |
API for system configuration including clock source selection and entering critical sections of code.
#define MXC_CRITICAL | ( | code | ) |
Macro for wrapping a section of code to make it critical (interrupts disabled). Note: this macro does not support nesting.
Ex:
This macro places a call to MXC_SYS_Crit_Enter before the code, and a call to MXC_SYS_Crit_Exit after.
code | The code section to wrap. |
System clock disable enumeration. Used in MXC_SYS_ClockDisable and MXC_SYS_ClockEnable functions.
enum mxc_sys_reset_t |
System reset0 and reset1 enumeration. Used in MXC_SYS_PeriphReset0 function.
Enumeration to select System Clock source.
int MXC_SYS_Clock_Select | ( | mxc_sys_system_clock_t | clock | ) |
Select the system clock.
clock | Enumeration for desired clock. Note: If using the external clock input be sure to define EXTCLK_FREQ correctly. The default EXTCLK_FREQ value is defined in the system_max78000.h file and can be overridden at compile time. |
int MXC_SYS_Clock_Timeout | ( | uint32_t | ready | ) |
Wait for a clock to enable with timeout.
ready | The clock to wait for |
void MXC_SYS_ClockDisable | ( | mxc_sys_periph_clock_t | clock | ) |
Disables the selected peripheral clock.
clock | Enumeration for desired clock. |
void MXC_SYS_ClockEnable | ( | mxc_sys_periph_clock_t | clock | ) |
Enables the selected peripheral clock.
clock | Enumeration for desired clock. |
int MXC_SYS_ClockSourceDisable | ( | mxc_sys_system_clock_t | clock | ) |
Disable System Clock Source.
clock | The clock to disable |
int MXC_SYS_ClockSourceEnable | ( | mxc_sys_system_clock_t | clock | ) |
Enable System Clock Source without switching to it.
clock | The clock to enable |
|
inlinestatic |
Enter a critical section of code that cannot be interrupted. Call MXC_SYS_Crit_Exit to exit the critical section.
Ex:
The MXC_CRITICAL macro is also provided as a convencience macro for wrapping a code section in this way.
|
inlinestatic |
Exit a critical section of code from MXC_SYS_Crit_Enter.
mxc_sys_system_clock_div_t MXC_SYS_GetClockDiv | ( | void | ) |
Get the current system clock divider.
int MXC_SYS_GetUSN | ( | uint8_t * | usn, |
uint8_t * | checksum | ||
) |
Reads the device USN and verifies the checksum.
usn | Pointer to store the USN. Array must be at least MXC_SYS_USN_LEN bytes long. |
checksum | Optional pointer to store the AES checksum. If not NULL, checksum is verified with AES engine. |
|
inlinestatic |
Polls whether code is currently executing from a critical section.
int MXC_SYS_IsClockEnabled | ( | mxc_sys_periph_clock_t | clock | ) |
Determines if the selected peripheral clock is enabled.
clock | Enumeration for desired clock. |
int MXC_SYS_LockDAP_Permanent | ( | void | ) |
This function PERMANENTLY locks the Debug Access Port.
void MXC_SYS_Reset_Periph | ( | mxc_sys_reset_t | reset | ) |
Reset the peripherals and/or CPU in the rstr0 or rstr1 register.
Enumeration | for what to reset. Can reset multiple items at once. |
int MXC_SYS_RTCClockDisable | ( | void | ) |
Disables the 32kHz oscillator.
void MXC_SYS_RTCClockEnable | ( | void | ) |
Enables the 32kHz oscillator.
mxc_sys_cfg | Not used, may be NULL. |
void MXC_SYS_SetClockDiv | ( | mxc_sys_system_clock_div_t | div | ) |
Set the system clock divider.
div | Enumeration for desired clock divider. |