PCNTEMLIB
Detailed Description
Pulse Counter (PCNT) Peripheral API.
This module contains functions to control the PCNT peripheral of Silicon Labs 32-bit MCUs and SoCs. The PCNT decodes incoming pulses. The module has a quadrature mode which may be used to decode the speed and direction of a mechanical shaft.
Data Structures |
|
struct | PCNT_Filter_TypeDef |
struct | PCNT_Init_TypeDef |
struct | PCNT_TCC_TypeDef |
Macros |
|
#define | PCNT0_CNT_SIZE (16) /* PCNT0 counter is 16 bits. */ |
#define | PCNT_FILTER_DEFAULT |
#define | PCNT_INIT_DEFAULT |
#define | PCNT_TCC_DEFAULT |
Enumerations |
|
enum |
PCNT_CntEvent_TypeDef
{
pcntCntEventBoth = _PCNT_CTRL_CNTEV_BOTH, pcntCntEventUp = _PCNT_CTRL_CNTEV_UP, pcntCntEventDown = _PCNT_CTRL_CNTEV_DOWN, pcntCntEventNone = _PCNT_CTRL_CNTEV_NONE } |
enum |
PCNT_Mode_TypeDef
{
pcntModeDisable = _PCNT_CTRL_MODE_DISABLE, pcntModeOvsSingle = _PCNT_CTRL_MODE_OVSSINGLE, pcntModeExtSingle = _PCNT_CTRL_MODE_EXTCLKSINGLE, pcntModeExtQuad = _PCNT_CTRL_MODE_EXTCLKQUAD, pcntModeOvsQuad1 = _PCNT_CTRL_MODE_OVSQUAD1X, pcntModeOvsQuad2 = _PCNT_CTRL_MODE_OVSQUAD2X, pcntModeOvsQuad4 = _PCNT_CTRL_MODE_OVSQUAD4X } |
enum |
PCNT_PRSInput_TypeDef
{
pcntPRSInputS0 = 0, pcntPRSInputS1 = 1 } |
enum |
PCNT_PRSSel_TypeDef
{
pcntPRSCh0 = 0, pcntPRSCh1 = 1, pcntPRSCh2 = 2, pcntPRSCh3 = 3, pcntPRSCh4 = 4, pcntPRSCh5 = 5, pcntPRSCh6 = 6, pcntPRSCh7 = 7, pcntPRSCh8 = 8, pcntPRSCh9 = 9, pcntPRSCh10 = 10, pcntPRSCh11 = 11 } |
enum |
PCNT_TCCComp_Typedef
{
tccCompLTOE = _PCNT_CTRL_TCCCOMP_LTOE, tccCompGTOE = _PCNT_CTRL_TCCCOMP_GTOE, tccCompRange = _PCNT_CTRL_TCCCOMP_RANGE } |
enum |
PCNT_TCCMode_TypeDef
{
tccModeDisabled = _PCNT_CTRL_TCCMODE_DISABLED, tccModeLFA = _PCNT_CTRL_TCCMODE_LFA, tccModePRS = _PCNT_CTRL_TCCMODE_PRS } |
enum |
PCNT_TCCPresc_Typedef
{
tccPrescDiv1 = _PCNT_CTRL_TCCPRESC_DIV1, tccPrescDiv2 = _PCNT_CTRL_TCCPRESC_DIV2, tccPrescDiv4 = _PCNT_CTRL_TCCPRESC_DIV4, tccPrescDiv8 = _PCNT_CTRL_TCCPRESC_DIV8 } |
Functions |
|
__STATIC_INLINE uint32_t | PCNT_AuxCounterGet ( PCNT_TypeDef *pcnt) |
Get auxiliary counter value.
|
|
__STATIC_INLINE uint32_t | PCNT_CounterGet ( PCNT_TypeDef *pcnt) |
Get pulse counter value.
|
|
void | PCNT_CounterReset ( PCNT_TypeDef *pcnt) |
Reset PCNT counters and TOP register.
|
|
__STATIC_INLINE void | PCNT_CounterSet ( PCNT_TypeDef *pcnt, uint32_t count) |
Set counter value.
|
|
void | PCNT_CounterTopSet ( PCNT_TypeDef *pcnt, uint32_t count, uint32_t top) |
Set counter and top values.
|
|
void | PCNT_Enable ( PCNT_TypeDef *pcnt, PCNT_Mode_TypeDef mode) |
Set PCNT operational mode.
|
|
void | PCNT_FilterConfiguration ( PCNT_TypeDef *pcnt, const PCNT_Filter_TypeDef *config, bool enable) |
Set filter configuration.
|
|
void | PCNT_FreezeEnable ( PCNT_TypeDef *pcnt, bool enable) |
PCNT register synchronization freeze control.
|
|
void | PCNT_Init ( PCNT_TypeDef *pcnt, const PCNT_Init_TypeDef *init) |
Init pulse counter.
|
|
__STATIC_INLINE void | PCNT_IntClear ( PCNT_TypeDef *pcnt, uint32_t flags) |
Clear one or more pending PCNT interrupts.
|
|
__STATIC_INLINE void | PCNT_IntDisable ( PCNT_TypeDef *pcnt, uint32_t flags) |
Disable one or more PCNT interrupts.
|
|
__STATIC_INLINE void | PCNT_IntEnable ( PCNT_TypeDef *pcnt, uint32_t flags) |
Enable one or more PCNT interrupts.
|
|
__STATIC_INLINE uint32_t | PCNT_IntGet ( PCNT_TypeDef *pcnt) |
Get pending PCNT interrupt flags.
|
|
__STATIC_INLINE uint32_t | PCNT_IntGetEnabled ( PCNT_TypeDef *pcnt) |
Get enabled and pending PCNT interrupt flags.
|
|
__STATIC_INLINE void | PCNT_IntSet ( PCNT_TypeDef *pcnt, uint32_t flags) |
Set one or more pending PCNT interrupts from SW.
|
|
void | PCNT_PRSInputEnable ( PCNT_TypeDef *pcnt, PCNT_PRSInput_TypeDef prsInput, bool enable) |
Enable/disable the selected PRS input of PCNT.
|
|
void | PCNT_Reset ( PCNT_TypeDef *pcnt) |
Reset PCNT to same state as after a HW reset.
|
|
void | PCNT_TCCConfiguration ( PCNT_TypeDef *pcnt, const PCNT_TCC_TypeDef *config) |
Set Triggered Compare and Clear configuration.
|
|
__STATIC_INLINE uint32_t | PCNT_TopBufferGet ( PCNT_TypeDef *pcnt) |
Get pulse counter top buffer value.
|
|
void | PCNT_TopBufferSet ( PCNT_TypeDef *pcnt, uint32_t val) |
Set top buffer value.
|
|
__STATIC_INLINE uint32_t | PCNT_TopGet ( PCNT_TypeDef *pcnt) |
Get pulse counter top value.
|
|
void | PCNT_TopSet ( PCNT_TypeDef *pcnt, uint32_t val) |
Set top value.
|
|
Macro Definition Documentation
#define PCNT0_CNT_SIZE (16) /* PCNT0 counter is 16 bits. */ |
PCNT0 Counter register size.
Definition at line
62
of file
em_pcnt.h
.
Referenced by PCNT_CounterTopSet() , PCNT_Init() , and PCNT_TopSet() .
#define PCNT_FILTER_DEFAULT |
Default config for PCNT init structure.
Definition at line
270
of file
em_pcnt.h
.
#define PCNT_INIT_DEFAULT |
Default config for PCNT init structure.
Definition at line
238
of file
em_pcnt.h
.
#define PCNT_TCC_DEFAULT |
Definition at line
343
of file
em_pcnt.h
.
Enumeration Type Documentation
Counter event selection. Note: unshifted values are being used for enumeration because multiple configuration structure members use this type definition.
Definition at line
109
of file
em_pcnt.h
.
enum PCNT_Mode_TypeDef |
Mode selection.
Definition at line
80
of file
em_pcnt.h
.
enum PCNT_PRSSel_TypeDef |
PRS sources for
s0PRS
and
s1PRS
.
Definition at line
126
of file
em_pcnt.h
.
enum PCNT_TCCComp_Typedef |
Compare modes for TCC module
Definition at line
307
of file
em_pcnt.h
.
enum PCNT_TCCMode_TypeDef |
Modes for Triggered Compare and Clear module
Definition at line
280
of file
em_pcnt.h
.
Prescaler values for LFA compare and clear events. Only has effect when TCC mode is LFA.
Definition at line
292
of file
em_pcnt.h
.
Function Documentation
__STATIC_INLINE uint32_t PCNT_AuxCounterGet | ( | PCNT_TypeDef * |
pcnt
|
) |
Get auxiliary counter value.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
- Returns
- Current auxiliary counter value.
Definition at line
386
of file
em_pcnt.h
.
References PCNT_TypeDef::AUXCNT .
__STATIC_INLINE uint32_t PCNT_CounterGet | ( | PCNT_TypeDef * |
pcnt
|
) |
Get pulse counter value.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
- Returns
- Current pulse counter value.
Definition at line
370
of file
em_pcnt.h
.
References PCNT_TypeDef::CNT .
void PCNT_CounterReset | ( | PCNT_TypeDef * |
pcnt
|
) |
Reset PCNT counters and TOP register.
- Note
- Notice that special SYNCBUSY handling is not applicable for the RSTEN bit of the control register, so we don't need to wait for it when only modifying RSTEN. (It would mean undefined wait time if clocked by external clock.) The SYNCBUSY bit will however be set, leading to a synchronization in the LF domain, with in reality no changes.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
Definition at line
142
of file
em_pcnt.c
.
References _PCNT_CTRL_RSTEN_SHIFT , BUS_RegBitWrite() , and PCNT_TypeDef::CTRL .
__STATIC_INLINE void PCNT_CounterSet | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
count
|
||
) |
Set counter value.
The pulse counter is disabled while changing counter value, and reenabled (if originally enabled) when counter value has been set.
- Note
- This function will stall until synchronization to low frequency domain is completed. For that reason, it should normally not be used when using an external clock to clock the PCNT module, since stall time may be undefined in that case. The counter should normally only be set when operating in (or about to enable) pcntModeOvsSingle mode.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] count
Value to set in counter register.
Definition at line
416
of file
em_pcnt.h
.
References PCNT_CounterTopSet() , and PCNT_TypeDef::TOP .
void PCNT_CounterTopSet | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
count,
|
||
uint32_t |
top
|
||
) |
Set counter and top values.
The pulse counter is disabled while changing these values, and reenabled (if originally enabled) when values have been set.
- Note
- This function will stall until synchronization to low frequency domain is completed. For that reason, it should normally not be used when using an external clock to clock the PCNT module, since stall time may be undefined in that case. The counter should normally only be set when operating in (or about to enable) pcntModeOvsSingle mode.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] count
Value to set in counter register. [in] top
Value to set in top register.
Definition at line
177
of file
em_pcnt.c
.
References _PCNT_CTRL_MODE_MASK , PCNT_TypeDef::CMD , PCNT_TypeDef::CTRL , PCNT0 , PCNT0_CNT_SIZE , PCNT_CMD_LCNTIM , PCNT_CMD_LTOPBIM , PCNT_CTRL_MODE_DISABLE , PCNT_SYNCBUSY_CMD , PCNT_SYNCBUSY_CTRL , PCNT_SYNCBUSY_TOPB , and PCNT_TypeDef::TOPB .
Referenced by PCNT_CounterSet() , and PCNT_Init() .
void PCNT_Enable | ( | PCNT_TypeDef * |
pcnt,
|
PCNT_Mode_TypeDef |
mode
|
||
) |
Set PCNT operational mode.
Notice that this function does not do any configuration. Setting operational mode is normally only required after initialization is done, and if not done as part of initialization. Or if requiring to disable/reenable pulse counter.
- Note
- This function may stall until synchronization to low frequency domain is completed. For that reason, it should normally not be used when using an external clock to clock the PCNT module, since stall time may be undefined in that case.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] mode
Operational mode to use for PCNT.
Definition at line
272
of file
em_pcnt.c
.
References _PCNT_CTRL_MODE_MASK , _PCNT_CTRL_MODE_SHIFT , PCNT_TypeDef::CTRL , and PCNT_SYNCBUSY_CTRL .
void PCNT_FilterConfiguration | ( | PCNT_TypeDef * |
pcnt,
|
const PCNT_Filter_TypeDef * |
config,
|
||
bool |
enable
|
||
) |
Set filter configuration.
This function will configure the PCNT input filter, when the PCNT mode is configured to take an LFA-derived clock as input clock.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] config
Pointer to configuration structure to be applied. [in] enable
Whether to enable or disable filtering
Definition at line
667
of file
em_pcnt.c
.
References _PCNT_OVSCFG_FILTLEN_MASK , _PCNT_OVSCFG_FILTLEN_SHIFT , _PCNT_OVSCFG_FLUTTERRM_SHIFT , PCNT_TypeDef::CTRL , PCNT_Filter_TypeDef::filtLen , PCNT_Filter_TypeDef::flutterrm , PCNT_TypeDef::OVSCFG , PCNT_CTRL_FILT , PCNT_SYNCBUSY_CTRL , and PCNT_SYNCBUSY_OVSCFG .
void PCNT_FreezeEnable | ( | PCNT_TypeDef * |
pcnt,
|
bool |
enable
|
||
) |
PCNT register synchronization freeze control.
Some PCNT registers require synchronization into the low frequency (LF) domain. The freeze feature allows for several such registers to be modified before passing them to the LF domain simultaneously (which takes place when the freeze mode is disabled).
- Note
- When enabling freeze mode, this function will wait for all current ongoing PCNT synchronization to LF domain to complete (Normally synchronization will not be in progress.) However for this reason, when using freeze mode, modifications of registers requiring LF synchronization should be done within one freeze enable/disable block to avoid unecessary stalling.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] enable
- true - enable freeze, modified registers are not propagated to the LF domain
- false - disables freeze, modified registers are propagated to LF domain
Definition at line
357
of file
em_pcnt.c
.
References PCNT_TypeDef::FREEZE , PCNT_FREEZE_REGFREEZE , and PCNT_TypeDef::SYNCBUSY .
void PCNT_Init | ( | PCNT_TypeDef * |
pcnt,
|
const PCNT_Init_TypeDef * |
init
|
||
) |
Init pulse counter.
This function will configure the pulse counter. The clock selection is configured as follows, depending on operational mode:
- pcntModeOvsSingle - Use LFACLK.
- pcntModeExtSingle - Use external PCNTn_S0 pin.
- pcntModeExtQuad - Use external PCNTn_S0 pin.
Notice that the LFACLK must be enabled in all modes, since some basic setup is done with this clock even if external pin clock usage mode is chosen. The pulse counter clock for the selected instance must also be enabled prior to init.
Notice that pins used by the PCNT module must be properly configured by the user explicitly through setting the ROUTE register, in order for the PCNT to work as intended.
Writing to CNT will not occur in external clock modes (EXTCLKQUAD and EXTCLKSINGLE) because the external clock rate is unknown. The user should handle it manually depending on the application
TOPB is written for all modes but in external clock mode it will take 3 external clock cycles to sync to TOP
- Note
- Initializing requires synchronization into the low frequency domain. This may cause some delay.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] init
Pointer to initialization structure used to initialize.
Definition at line
417
of file
em_pcnt.c
.
References _PCNT_CTRL_AUXCNTEV_SHIFT , _PCNT_CTRL_CNTEV_SHIFT , _PCNT_CTRL_MODE_MASK , _PCNT_CTRL_MODE_SHIFT , _PCNT_CTRL_RSTEN_SHIFT , _PCNT_INPUT_S0PRSSEL_MASK , _PCNT_INPUT_S0PRSSEL_SHIFT , _PCNT_INPUT_S1PRSSEL_MASK , _PCNT_INPUT_S1PRSSEL_SHIFT , PCNT_Init_TypeDef::auxCntEvent , BUS_RegBitWrite() , PCNT_TypeDef::CMD , CMU_PCNTClockExternalSet() , PCNT_Init_TypeDef::cntEvent , PCNT_Init_TypeDef::countDown , PCNT_Init_TypeDef::counter , PCNT_TypeDef::CTRL , PCNT_Init_TypeDef::filter , PCNT_Init_TypeDef::hyst , PCNT_TypeDef::INPUT , PCNT_Init_TypeDef::mode , PCNT_Init_TypeDef::negEdge , PCNT0 , PCNT0_CNT_SIZE , PCNT_CMD_LTOPBIM , PCNT_CounterTopSet() , PCNT_CTRL_CNTDIR_DOWN , PCNT_CTRL_EDGE_NEG , PCNT_CTRL_FILT , PCNT_CTRL_HYST , PCNT_CTRL_MODE_DISABLE , PCNT_CTRL_RSTEN , PCNT_CTRL_S1CDIR , PCNT_SYNCBUSY_CTRL , pcntCntEventBoth , pcntCntEventDown , pcntCntEventNone , pcntCntEventUp , pcntModeExtQuad , pcntModeExtSingle , pcntModeOvsSingle , PCNT_Init_TypeDef::s0PRS , PCNT_Init_TypeDef::s1CntDir , PCNT_Init_TypeDef::s1PRS , PCNT_Init_TypeDef::top , and PCNT_TypeDef::TOPB .
__STATIC_INLINE void PCNT_IntClear | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
flags
|
||
) |
Clear one or more pending PCNT interrupts.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] flags
Pending PCNT interrupt source to clear. Use a bitwise logic OR combination of valid interrupt flags for the PCNT module (PCNT_IF_nnn).
Definition at line
449
of file
em_pcnt.h
.
References PCNT_TypeDef::IFC .
__STATIC_INLINE void PCNT_IntDisable | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
flags
|
||
) |
Disable one or more PCNT interrupts.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] flags
PCNT interrupt sources to disable. Use a bitwise logic OR combination of valid interrupt flags for the PCNT module (PCNT_IF_nnn).
Definition at line
465
of file
em_pcnt.h
.
References PCNT_TypeDef::IEN .
__STATIC_INLINE void PCNT_IntEnable | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
flags
|
||
) |
Enable one or more PCNT interrupts.
- Note
- Depending on the use, a pending interrupt may already be set prior to enabling the interrupt. Consider using PCNT_IntClear() prior to enabling if such a pending interrupt should be ignored.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] flags
PCNT interrupt sources to enable. Use a bitwise logic OR combination of valid interrupt flags for the PCNT module (PCNT_IF_nnn).
Definition at line
486
of file
em_pcnt.h
.
References PCNT_TypeDef::IEN .
__STATIC_INLINE uint32_t PCNT_IntGet | ( | PCNT_TypeDef * |
pcnt
|
) |
Get pending PCNT interrupt flags.
- Note
- The event bits are not cleared by the use of this function.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
- Returns
- PCNT interrupt sources pending. A bitwise logic OR combination of valid interrupt flags for the PCNT module (PCNT_IF_nnn).
Definition at line
505
of file
em_pcnt.h
.
References PCNT_TypeDef::IF .
__STATIC_INLINE uint32_t PCNT_IntGetEnabled | ( | PCNT_TypeDef * |
pcnt
|
) |
Get enabled and pending PCNT interrupt flags.
Useful for handling more interrupt sources in the same interrupt handler.
- Note
- The event bits are not cleared by the use of this function.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
- Returns
-
Pending and enabled PCNT interrupt sources. The return value is the bitwise AND combination of
- the OR combination of enabled interrupt sources in PCNT_IEN_nnn register (PCNT_IEN_nnn) and
- the OR combination of valid interrupt flags of the PCNT module (PCNT_IF_nnn).
Definition at line
531
of file
em_pcnt.h
.
References PCNT_TypeDef::IEN , and PCNT_TypeDef::IF .
__STATIC_INLINE void PCNT_IntSet | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
flags
|
||
) |
Set one or more pending PCNT interrupts from SW.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] flags
PCNT interrupt sources to set to pending. Use a bitwise logic OR combination of valid interrupt flags for the PCNT module (PCNT_IF_nnn).
Definition at line
554
of file
em_pcnt.h
.
References PCNT_TypeDef::IFS .
void PCNT_PRSInputEnable | ( | PCNT_TypeDef * |
pcnt,
|
PCNT_PRSInput_TypeDef |
prsInput,
|
||
bool |
enable
|
||
) |
Enable/disable the selected PRS input of PCNT.
Notice that this function does not do any configuration.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] prsInput
PRS input (S0 or S1) of the selected PCNT module. [in] enable
Set to true to enable, false to disable the selected PRS input.
Definition at line
304
of file
em_pcnt.c
.
References _PCNT_INPUT_S0PRSEN_SHIFT , _PCNT_INPUT_S1PRSEN_SHIFT , BUS_RegBitWrite() , PCNT_TypeDef::INPUT , and pcntPRSInputS1 .
void PCNT_Reset | ( | PCNT_TypeDef * |
pcnt
|
) |
Reset PCNT to same state as after a HW reset.
Notice the LFACLK must be enabled, since some basic reset is done with this clock. The pulse counter clock for the selected instance must also be enabled prior to init.
- Note
- The ROUTE register is NOT reset by this function, in order to allow for centralized setup of this feature.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
Definition at line
613
of file
em_pcnt.c
.
References _PCNT_CTRL_RESETVALUE , _PCNT_CTRL_RSTEN_SHIFT , _PCNT_IEN_RESETVALUE , _PCNT_IFC_MASK , _PCNT_TOPB_RESETVALUE , BUS_RegBitWrite() , CMU_PCNTClockExternalSet() , PCNT_TypeDef::CTRL , PCNT_TypeDef::IEN , PCNT_TypeDef::IFC , PCNT_CTRL_RSTEN , PCNT_SYNCBUSY_CTRL , and PCNT_TopBufferSet() .
void PCNT_TCCConfiguration | ( | PCNT_TypeDef * |
pcnt,
|
const PCNT_TCC_TypeDef * |
config
|
||
) |
Set Triggered Compare and Clear configuration.
This function will configure the PCNT TCC (Triggered Compare and Clear) module. This module can, upon a configurable trigger source, compare the current counter value with the configured TOP value. Upon match, the counter will be reset, and the TCC PRS output and TCC interrupt flag will be set.
Since there is a comparison with the TOP value, the counter will not stop counting nor wrap when hitting the TOP value, but it will keep on counting until its maximum value. Then, it will not wrap, but instead stop counting and set the overflow flag.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] config
Pointer to configuration structure to be applied.
Definition at line
713
of file
em_pcnt.c
.
References _PCNT_CTRL_PRSGATEEN_MASK , _PCNT_CTRL_PRSGATEEN_SHIFT , _PCNT_CTRL_TCCCOMP_MASK , _PCNT_CTRL_TCCCOMP_SHIFT , _PCNT_CTRL_TCCMODE_MASK , _PCNT_CTRL_TCCMODE_SHIFT , _PCNT_CTRL_TCCPRESC_MASK , _PCNT_CTRL_TCCPRESC_SHIFT , _PCNT_CTRL_TCCPRSPOL_MASK , _PCNT_CTRL_TCCPRSPOL_SHIFT , _PCNT_CTRL_TCCPRSSEL_MASK , _PCNT_CTRL_TCCPRSSEL_SHIFT , PCNT_TCC_TypeDef::compare , PCNT_TypeDef::CTRL , PCNT_TCC_TypeDef::mode , PCNT_SYNCBUSY_CTRL , PCNT_TCC_TypeDef::prescaler , PCNT_TCC_TypeDef::prsGateEnable , PCNT_TCC_TypeDef::prsPolarity , and PCNT_TCC_TypeDef::tccPRS .
__STATIC_INLINE uint32_t PCNT_TopBufferGet | ( | PCNT_TypeDef * |
pcnt
|
) |
Get pulse counter top buffer value.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
- Returns
- Current pulse counter top buffer value.
Definition at line
571
of file
em_pcnt.h
.
References PCNT_TypeDef::TOPB .
void PCNT_TopBufferSet | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
val
|
||
) |
Set top buffer value.
- Note
- This function may stall until synchronization to low frequency domain is completed. For that reason, it should normally not be used when using an external clock to clock the PCNT module, since stall time may be undefined in that case.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] val
Value to set in top buffer register.
Definition at line
755
of file
em_pcnt.c
.
References PCNT_SYNCBUSY_TOPB , and PCNT_TypeDef::TOPB .
Referenced by PCNT_Reset() .
__STATIC_INLINE uint32_t PCNT_TopGet | ( | PCNT_TypeDef * |
pcnt
|
) |
Get pulse counter top value.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block.
- Returns
- Current pulse counter top value.
Definition at line
588
of file
em_pcnt.h
.
References PCNT_TypeDef::TOP .
void PCNT_TopSet | ( | PCNT_TypeDef * |
pcnt,
|
uint32_t |
val
|
||
) |
Set top value.
- Note
- This function will stall until synchronization to low frequency domain is completed. For that reason, it should normally not be used when using an external clock to clock the PCNT module, since stall time may be undefined in that case.
- Parameters
-
[in] pcnt
Pointer to PCNT peripheral register block. [in] val
Value to set in top register.
Definition at line
780
of file
em_pcnt.c
.
References PCNT_TypeDef::CMD , PCNT0 , PCNT0_CNT_SIZE , PCNT_CMD_LTOPBIM , PCNT_SYNCBUSY_CMD , PCNT_SYNCBUSY_TOPB , and PCNT_TypeDef::TOPB .