123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- /***************************************************************************//**
- * @file
- * @brief Low Energy Timer (LETIMER) peripheral API
- * @author Energy Micro AS
- * @version 3.0.0
- *******************************************************************************
- * @section License
- * <b>(C) Copyright 2012 Energy Micro AS, http://www.energymicro.com</b>
- *******************************************************************************
- *
- * Permission is granted to anyone to use this software for any purpose,
- * including commercial applications, and to alter it and redistribute it
- * freely, subject to the following restrictions:
- *
- * 1. The origin of this software must not be misrepresented; you must not
- * claim that you wrote the original software.
- * 2. Altered source versions must be plainly marked as such, and must not be
- * misrepresented as being the original software.
- * 3. This notice may not be removed or altered from any source distribution.
- *
- * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Energy Micro AS has no
- * obligation to support this Software. Energy Micro AS is providing the
- * Software "AS IS", with no express or implied warranties of any kind,
- * including, but not limited to, any implied warranties of merchantability
- * or fitness for any particular purpose or warranties against infringement
- * of any proprietary rights of a third party.
- *
- * Energy Micro AS will not be liable for any consequential, incidental, or
- * special damages, or any other relief, or for any claim by any third party,
- * arising from your use of this Software.
- *
- ******************************************************************************/
- #ifndef __EM_LETIMER_H
- #define __EM_LETIMER_H
- #include <stdbool.h>
- #include "em_part.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /***************************************************************************//**
- * @addtogroup EM_Library
- * @{
- ******************************************************************************/
- /***************************************************************************//**
- * @addtogroup LETIMER
- * @{
- ******************************************************************************/
- /*******************************************************************************
- ******************************** ENUMS ************************************
- ******************************************************************************/
- /** Repeat mode. */
- typedef enum
- {
- /** Count until stopped by SW. */
- letimerRepeatFree = _LETIMER_CTRL_REPMODE_FREE,
- /** Count REP0 times. */
- letimerRepeatOneshot = _LETIMER_CTRL_REPMODE_ONESHOT,
- /**
- * Count REP0 times, if REP1 has been written to, it is loaded into
- * REP0 when REP0 is about to be decremented to 0.
- */
- letimerRepeatBuffered = _LETIMER_CTRL_REPMODE_BUFFERED,
- /**
- * Run as long as both REP0 and REP1 are not 0. Both REP0 and REP1
- * are decremented when counter underflows.
- */
- letimerRepeatDouble = _LETIMER_CTRL_REPMODE_DOUBLE
- } LETIMER_RepeatMode_TypeDef;
- /** Underflow action on output. */
- typedef enum
- {
- /** No output action. */
- letimerUFOANone = _LETIMER_CTRL_UFOA0_NONE,
- /** Toggle output when counter underflows. */
- letimerUFOAToggle = _LETIMER_CTRL_UFOA0_TOGGLE,
- /** Hold output one LETIMER clock cycle when counter underflows. */
- letimerUFOAPulse = _LETIMER_CTRL_UFOA0_PULSE,
- /** Set output idle when counter underflows, and active when matching COMP1. */
- letimerUFOAPwm = _LETIMER_CTRL_UFOA0_PWM
- } LETIMER_UFOA_TypeDef;
- /*******************************************************************************
- ******************************* STRUCTS ***********************************
- ******************************************************************************/
- /** LETIMER initialization structure. */
- typedef struct
- {
- bool enable; /**< Start counting when init completed. */
- bool debugRun; /**< Counter shall keep running during debug halt. */
- bool rtcComp0Enable; /**< Start counting on RTC COMP0 match. */
- bool rtcComp1Enable; /**< Start counting on RTC COMP1 match. */
- bool comp0Top; /**< Load COMP0 register into CNT when counter underflows. */
- bool bufTop; /**< Load COMP1 into COMP0 when REP0 reaches 0. */
- uint8_t out0Pol; /**< Idle value for output 0. */
- uint8_t out1Pol; /**< Idle value for output 1. */
- LETIMER_UFOA_TypeDef ufoa0; /**< Underflow output 0 action. */
- LETIMER_UFOA_TypeDef ufoa1; /**< Underflow output 1 action. */
- LETIMER_RepeatMode_TypeDef repMode; /**< Repeat mode. */
- } LETIMER_Init_TypeDef;
- /** Default config for LETIMER init structure. */
- #define LETIMER_INIT_DEFAULT \
- { true, /* Enable timer when init complete. */ \
- false, /* Stop counter during debug halt. */ \
- false, /* Do not start counting on RTC COMP0 match. */ \
- false, /* Do not start counting on RTC COMP1 match. */ \
- false, /* Do not load COMP0 into CNT on underflow. */ \
- false, /* Do not load COMP1 into COMP0 when REP0 reaches 0. */ \
- 0, /* Idle value 0 for output 0. */ \
- 0, /* Idle value 0 for output 1. */ \
- letimerUFOANone, /* No action on underflow on output 0. */ \
- letimerUFOANone, /* No action on underflow on output 1. */ \
- letimerRepeatFree /* Count until stopped by SW. */ \
- }
- /*******************************************************************************
- ***************************** PROTOTYPES **********************************
- ******************************************************************************/
- uint32_t LETIMER_CompareGet(LETIMER_TypeDef *letimer, unsigned int comp);
- void LETIMER_CompareSet(LETIMER_TypeDef *letimer,
- unsigned int comp,
- uint32_t value);
- /***************************************************************************//**
- * @brief
- * Get LETIMER counter value.
- *
- * @param[in] letimer
- * Pointer to LETIMER peripheral register block.
- *
- * @return
- * Current LETIMER counter value.
- ******************************************************************************/
- __STATIC_INLINE uint32_t LETIMER_CounterGet(LETIMER_TypeDef *letimer)
- {
- return(letimer->CNT);
- }
- void LETIMER_Enable(LETIMER_TypeDef *letimer, bool enable);
- void LETIMER_FreezeEnable(LETIMER_TypeDef *letimer, bool enable);
- void LETIMER_Init(LETIMER_TypeDef *letimer, const LETIMER_Init_TypeDef *init);
- /***************************************************************************//**
- * @brief
- * Clear one or more pending LETIMER interrupts.
- *
- * @param[in] letimer
- * Pointer to LETIMER peripheral register block.
- *
- * @param[in] flags
- * Pending LETIMER interrupt source to clear. Use a bitwise logic OR
- * combination of valid interrupt flags for the LETIMER module
- * (LETIMER_IF_nnn).
- ******************************************************************************/
- __STATIC_INLINE void LETIMER_IntClear(LETIMER_TypeDef *letimer, uint32_t flags)
- {
- letimer->IFC = flags;
- }
- /***************************************************************************//**
- * @brief
- * Disable one or more LETIMER interrupts.
- *
- * @param[in] letimer
- * Pointer to LETIMER peripheral register block.
- *
- * @param[in] flags
- * LETIMER interrupt sources to disable. Use a bitwise logic OR combination of
- * valid interrupt flags for the LETIMER module (LETIMER_IF_nnn).
- ******************************************************************************/
- __STATIC_INLINE void LETIMER_IntDisable(LETIMER_TypeDef *letimer, uint32_t flags)
- {
- letimer->IEN &= ~(flags);
- }
- /***************************************************************************//**
- * @brief
- * Enable one or more LETIMER interrupts.
- *
- * @note
- * Depending on the use, a pending interrupt may already be set prior to
- * enabling the interrupt. Consider using LETIMER_IntClear() prior to enabling
- * if such a pending interrupt should be ignored.
- *
- * @param[in] letimer
- * Pointer to LETIMER peripheral register block.
- *
- * @param[in] flags
- * LETIMER interrupt sources to enable. Use a bitwise logic OR combination of
- * valid interrupt flags for the LETIMER module (LETIMER_IF_nnn).
- ******************************************************************************/
- __STATIC_INLINE void LETIMER_IntEnable(LETIMER_TypeDef *letimer, uint32_t flags)
- {
- letimer->IEN |= flags;
- }
- /***************************************************************************//**
- * @brief
- * Get pending LETIMER interrupt flags.
- *
- * @note
- * The event bits are not cleared by the use of this function.
- *
- * @param[in] letimer
- * Pointer to LETIMER peripheral register block.
- *
- * @return
- * LETIMER interrupt sources pending. A bitwise logic OR combination of
- * valid interrupt flags for the LETIMER module (LETIMER_IF_nnn).
- ******************************************************************************/
- __STATIC_INLINE uint32_t LETIMER_IntGet(LETIMER_TypeDef *letimer)
- {
- return(letimer->IF);
- }
- /***************************************************************************//**
- * @brief
- * Set one or more pending LETIMER interrupts from SW.
- *
- * @param[in] letimer
- * Pointer to LETIMER peripheral register block.
- *
- * @param[in] flags
- * LETIMER interrupt sources to set to pending. Use a bitwise logic OR
- * combination of valid interrupt flags for the LETIMER module (LETIMER_IF_nnn).
- ******************************************************************************/
- __STATIC_INLINE void LETIMER_IntSet(LETIMER_TypeDef *letimer, uint32_t flags)
- {
- letimer->IFS = flags;
- }
- uint32_t LETIMER_RepeatGet(LETIMER_TypeDef *letimer, unsigned int rep);
- void LETIMER_RepeatSet(LETIMER_TypeDef *letimer,
- unsigned int rep,
- uint32_t value);
- void LETIMER_Reset(LETIMER_TypeDef *letimer);
- /** @} (end addtogroup LETIMER) */
- /** @} (end addtogroup EM_Library) */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __EM_LETIMER_H */
|