![]() |
MAX32655 Peripheral Driver API
Peripheral Driver API for the MAX32655
|
Data Structures | |
struct | mxc_pt_cfg_t |
Enumerations | |
enum | mxc_clk_scale_t |
Functions | |
void | MXC_PT_Init (mxc_clk_scale_t clk_scale) |
void | MXC_PT_Shutdown (uint32_t pts) |
int | MXC_PT_Config (mxc_pt_cfg_t *cfg) |
int | MXC_PT_SqrWaveConfig (unsigned channel, uint32_t freq) |
void | MXC_PT_Start (unsigned pts) |
void | MXC_PT_Stop (unsigned pts) |
uint32_t | MXC_PT_IsActive (uint32_t pts) |
void | MXC_PT_SetPattern (unsigned pts, uint32_t pattern) |
void | MXC_PT_EnableStopInt (uint32_t pts) |
void | MXC_PT_DisableStopInt (uint32_t pts) |
uint32_t | MXC_PT_GetStopFlags (void) |
void | MXC_PT_ClearStopFlags (uint32_t flags) |
void | MXC_PT_EnableRestart (unsigned start, unsigned stop, uint8_t restartIndex) |
void | MXC_PT_DisableRestart (unsigned channel, uint8_t restartIndex) |
void | MXC_PT_Resync (uint32_t pts) |
void | MXC_PT_EnableReadyInt (uint32_t pts) |
void | MXC_PT_DisableReadyInt (uint32_t pts) |
uint32_t | MXC_PT_GetReadyFlags (void) |
void | MXC_PT_ClearReadyFlags (uint32_t flags) |
This is the high level API for the pulse train engine.
struct mxc_pt_cfg_t |
Structure type for pulse train mode configuration.
Data Fields | |
unsigned | channel |
uint32_t | bps |
uint32_t | pattern |
uint8_t | ptLength |
uint16_t | loop |
uint16_t | loopDelay |
uint32_t bps |
pulse train bit rate
unsigned channel |
PT Channel to use
uint16_t loop |
Number of times to repeat the train, 0 = continuous
uint16_t loopDelay |
Delay between loops specified in bits Example: loopDelay = 4, delays time = time it takes to shift out 4 bits
uint32_t pattern |
Output pattern to shift out, starts at LSB
uint8_t ptLength |
Number of bits in pulse train, 0 = 32bits, 1 = non valid , 2 = 2 bits, ...
enum mxc_clk_scale_t |
Enumeration type for the system clock scale types
void MXC_PT_ClearReadyFlags | ( | uint32_t | flags | ) |
Clears the pulse train's Ready interrupt flag.
flags | bits to clear, see MXC_PT_READY_INTFL_Register Register for details. |
void MXC_PT_ClearStopFlags | ( | uint32_t | flags | ) |
Clears the pulse train's Stop interrupt flag.
flags | bits to clear, see MXC_PT_STOP_INTFL_Register Register for details. |
int MXC_PT_Config | ( | mxc_pt_cfg_t * | cfg | ) |
Configures the pulse train in the specified mode.
The parameters in the config structure must be set before calling this function. This function should be used for configuring pulse train mode only.
cfg | Pointer to pulse train configuration. |
void MXC_PT_DisableReadyInt | ( | uint32_t | pts | ) |
Disable Ready interrupts for the pulse trains selected.
pts | Bit mask of what pulse trains to disable. Set the bit position of each pulse train to disable it. Bit0->pt0, Bit1->pt1... etc, 1 will disable the interrupt, 0 to leave a PT channel in its current state. |
void MXC_PT_DisableRestart | ( | unsigned | channel, |
uint8_t | restartIndex | ||
) |
Disable the restart for the specified pulse train.
channel | Pulse train channel |
restartIndex | selects which restart trigger to disable (0 or 1) |
void MXC_PT_DisableStopInt | ( | uint32_t | pts | ) |
Disable Stop interrupts for the pulse trains selected.
pts | Bit mask of what pulse trains to disable. Set the bit position of each pulse train to disable it. Bit0->pt0, Bit1->pt1... etc, 1 will disable the interrupt, 0 to leave a PT channel in its current state. |
void MXC_PT_EnableReadyInt | ( | uint32_t | pts | ) |
Enable Ready interrupts for the pulse trains selected.
pts | Bit mask of which pulse trains to enable. Set the bit position of each pulse train to enable it. Bit0->pt0, Bit1->pt1... etc, 1 will enable the interrupt, 0 to leave a PT channel in its current state. |
void MXC_PT_EnableRestart | ( | unsigned | start, |
unsigned | stop, | ||
uint8_t | restartIndex | ||
) |
Setup and enables a pulse train to restart after another pulse train has exited its loop. Each pulse train can have up to two restart triggers.
start | Pulse train channel to start. |
stop | Pulse train channel to stop. |
restartIndex | selects which restart trigger to set (0 or 1). |
void MXC_PT_EnableStopInt | ( | uint32_t | pts | ) |
Enable Stop interrupts for the pulse trains selected.
pts | Bit mask of which pulse trains to enable. Set the bit position of each pulse train to enable it. Bit0->pt0, Bit1->pt1... etc, 1 will enable the interrupt, 0 to leave a PT channel in its current state. |
uint32_t MXC_PT_GetReadyFlags | ( | void | ) |
Gets the pulse trains's Ready interrupt flags.
uint32_t MXC_PT_GetStopFlags | ( | void | ) |
Gets the pulse trains's Stop interrupt flags.
void MXC_PT_Init | ( | mxc_clk_scale_t | clk_scale | ) |
This function initializes the pulse trains to a known stopped state and sets the global PT clock scale.
clk_scale | Scale the system clock for the global PT clock. |
uint32_t MXC_PT_IsActive | ( | uint32_t | pts | ) |
Determines if the pulse trains selected are running.
pts | Set the bits of pulse trains to check Bit0->pt0, Bit1->pt1... etc. |
void MXC_PT_Resync | ( | uint32_t | pts | ) |
Resynchronize individual pulse trains together. Resync will stop those resync_pts; others will be still running.
pts | Pulse train modules that need to be re-synced by bit number. Bit0->pt0, Bit1->pt1... etc. |
void MXC_PT_SetPattern | ( | unsigned | pts, |
uint32_t | pattern | ||
) |
Sets the pattern of the pulse train.
pts | Pulse train pts to operate on. |
pattern | Output pattern. |
void MXC_PT_Shutdown | ( | uint32_t | pts | ) |
Shutdown the pulse train channel/channels.
Shutdown pulse train and if all pluse trains are shut down then turn off pulse train clock.
pts | Pulse train channel to operate on. |
int MXC_PT_SqrWaveConfig | ( | unsigned | channel, |
uint32_t | freq | ||
) |
Configures the pulse train in the square wave mode.
This function should be used for configuring square wave mode only.
channel | Pulse train channel to operate on |
freq | square wave output frequency in Hz |
void MXC_PT_Start | ( | unsigned | pts | ) |
Starts the pulse trains specified.
pts | Pulse train pts to operate on. |
void MXC_PT_Stop | ( | unsigned | pts | ) |
Stops pulse trains.
pts | Pulse train pts to stop. |