RTEMS
5.0.0
|
#include "chip.h"
#include <stdint.h>
Go to the source code of this file.
Functions | |
void | TC_Configure (Tc *pTc, uint32_t dwChannel, uint32_t dwMode) |
Configures a Timer Counter Channel. More... | |
void | TC_Start (Tc *pTc, uint32_t dwChannel) |
Reset and Start the TC Channel. More... | |
void | TC_Stop (Tc *pTc, uint32_t dwChannel) |
Stop TC Channel. More... | |
uint32_t | TC_FindMckDivisor (uint32_t dwFreq, uint32_t dwMCk, uint32_t *dwDiv, uint32_t *dwTcClks, uint32_t dwBoardMCK) |
Find best MCK divisor. More... | |
Interface for configuring and using Timer Counter (TC) peripherals.
void TC_Configure | ( | Tc * | pTc, |
uint32_t | dwChannel, | ||
uint32_t | dwMode | ||
) |
Configures a Timer Counter Channel.
Configures a Timer Counter to operate in the given mode. Timer is stopped after configuration and must be restarted with TC_Start(). All the interrupts of the timer are also disabled.
pTc | Pointer to a Tc instance. |
channel | Channel number. |
mode | Operating mode (TC_CMR value). |
uint32_t TC_FindMckDivisor | ( | uint32_t | dwFreq, |
uint32_t | dwMCk, | ||
uint32_t * | dwDiv, | ||
uint32_t * | dwTcClks, | ||
uint32_t | dwBoardMCK | ||
) |
Find best MCK divisor.
Finds the best MCK divisor given the timer frequency and MCK. The result is guaranteed to satisfy the following equation:
with DIV being the highest possible value.
dwFreq | Desired timer frequency. |
dwMCk | Master clock frequency. |
dwDiv | Divisor value. |
dwTcClks | TCCLKS field value for divisor. |
dwBoardMCK | Board clock frequency. |
void TC_Start | ( | Tc * | pTc, |
uint32_t | dwChannel | ||
) |
Reset and Start the TC Channel.
Enables the timer clock and performs a software reset to start the counting.
pTc | Pointer to a Tc instance. |
dwChannel | Channel number. |