forked from espressif/esp-idf
Merge branch 'feature/esp_timer_add_ll_for_rc_fast_clk' into 'master'
hal: Adds hal/ll func for SYSTIMER to select clock source: XTAL or RC_FAST_CLK Closes IDF-5323 See merge request espressif/esp-idf!21136
This commit is contained in:
@@ -8,6 +8,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "soc/systimer_struct.h"
|
#include "soc/systimer_struct.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
#include "hal/assert.h"
|
#include "hal/assert.h"
|
||||||
|
|
||||||
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
||||||
@@ -29,6 +30,16 @@ __attribute__((always_inline)) static inline void systimer_ll_enable_clock(systi
|
|||||||
dev->conf.clk_en = en;
|
dev->conf.clk_en = en;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void systimer_ll_set_clock_source(soc_periph_systimer_clk_src_t clk_src)
|
||||||
|
{
|
||||||
|
(void)clk_src;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline soc_periph_systimer_clk_src_t systimer_ll_get_clock_source(void)
|
||||||
|
{
|
||||||
|
return SYSTIMER_CLK_SRC_XTAL;
|
||||||
|
}
|
||||||
|
|
||||||
/******************* Counter *************************/
|
/******************* Counter *************************/
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "soc/systimer_struct.h"
|
#include "soc/systimer_struct.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
#include "hal/assert.h"
|
#include "hal/assert.h"
|
||||||
|
|
||||||
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
||||||
@@ -29,6 +30,16 @@ __attribute__((always_inline)) static inline void systimer_ll_enable_clock(systi
|
|||||||
dev->conf.clk_en = en;
|
dev->conf.clk_en = en;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void systimer_ll_set_clock_source(soc_periph_systimer_clk_src_t clk_src)
|
||||||
|
{
|
||||||
|
(void)clk_src;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline soc_periph_systimer_clk_src_t systimer_ll_get_clock_source(void)
|
||||||
|
{
|
||||||
|
return SYSTIMER_CLK_SRC_XTAL;
|
||||||
|
}
|
||||||
|
|
||||||
/******************* Counter *************************/
|
/******************* Counter *************************/
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
||||||
|
@@ -8,6 +8,8 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "soc/systimer_struct.h"
|
#include "soc/systimer_struct.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
|
#include "soc/pcr_struct.h"
|
||||||
#include "hal/assert.h"
|
#include "hal/assert.h"
|
||||||
|
|
||||||
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
||||||
@@ -29,6 +31,17 @@ __attribute__((always_inline)) static inline void systimer_ll_enable_clock(systi
|
|||||||
dev->conf.clk_en = en;
|
dev->conf.clk_en = en;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set clock source: XTAL(default) or RC_FAST
|
||||||
|
static inline void systimer_ll_set_clock_source(soc_periph_systimer_clk_src_t clk_src)
|
||||||
|
{
|
||||||
|
PCR.systimer_func_clk_conf.systimer_func_clk_sel = (clk_src == SYSTIMER_CLK_SRC_RC_FAST) ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline soc_periph_systimer_clk_src_t systimer_ll_get_clock_source(void)
|
||||||
|
{
|
||||||
|
return (PCR.systimer_func_clk_conf.systimer_func_clk_sel == 1) ? SYSTIMER_CLK_SRC_RC_FAST : SYSTIMER_CLK_SRC_XTAL;
|
||||||
|
}
|
||||||
|
|
||||||
/******************* Counter *************************/
|
/******************* Counter *************************/
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "soc/systimer_struct.h"
|
#include "soc/systimer_struct.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
#include "hal/assert.h"
|
#include "hal/assert.h"
|
||||||
|
|
||||||
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
||||||
@@ -29,6 +30,16 @@ __attribute__((always_inline)) static inline void systimer_ll_enable_clock(systi
|
|||||||
dev->conf.clk_en = en;
|
dev->conf.clk_en = en;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void systimer_ll_set_clock_source(soc_periph_systimer_clk_src_t clk_src)
|
||||||
|
{
|
||||||
|
(void)clk_src;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline soc_periph_systimer_clk_src_t systimer_ll_get_clock_source(void)
|
||||||
|
{
|
||||||
|
return SYSTIMER_CLK_SRC_XTAL;
|
||||||
|
}
|
||||||
|
|
||||||
/******************* Counter *************************/
|
/******************* Counter *************************/
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "soc/systimer_struct.h"
|
#include "soc/systimer_struct.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
#include "hal/assert.h"
|
#include "hal/assert.h"
|
||||||
|
|
||||||
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
||||||
@@ -27,6 +28,16 @@ __attribute__((always_inline)) static inline void systimer_ll_enable_clock(systi
|
|||||||
dev->conf.clk_en = en;
|
dev->conf.clk_en = en;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void systimer_ll_set_clock_source(soc_periph_systimer_clk_src_t clk_src)
|
||||||
|
{
|
||||||
|
(void)clk_src;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline soc_periph_systimer_clk_src_t systimer_ll_get_clock_source(void)
|
||||||
|
{
|
||||||
|
return SYSTIMER_CLK_SRC_XTAL;
|
||||||
|
}
|
||||||
|
|
||||||
/******************* Counter *************************/
|
/******************* Counter *************************/
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "soc/systimer_struct.h"
|
#include "soc/systimer_struct.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
#include "hal/assert.h"
|
#include "hal/assert.h"
|
||||||
|
|
||||||
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
#define SYSTIMER_LL_COUNTER_CLOCK 0 // Counter used by esptimer, to generate the system level wall clock
|
||||||
@@ -30,6 +31,16 @@ __attribute__((always_inline)) static inline void systimer_ll_enable_clock(systi
|
|||||||
dev->conf.clk_en = en;
|
dev->conf.clk_en = en;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void systimer_ll_set_clock_source(soc_periph_systimer_clk_src_t clk_src)
|
||||||
|
{
|
||||||
|
(void)clk_src;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline soc_periph_systimer_clk_src_t systimer_ll_get_clock_source(void)
|
||||||
|
{
|
||||||
|
return SYSTIMER_CLK_SRC_XTAL;
|
||||||
|
}
|
||||||
|
|
||||||
/******************* Counter *************************/
|
/******************* Counter *************************/
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
__attribute__((always_inline)) static inline void systimer_ll_enable_counter(systimer_dev_t *dev, uint32_t counter_id, bool en)
|
||||||
|
@@ -10,6 +10,7 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "hal/systimer_types.h"
|
#include "hal/systimer_types.h"
|
||||||
#include "soc/soc_caps.h"
|
#include "soc/soc_caps.h"
|
||||||
|
#include "soc/clk_tree_defs.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@@ -38,6 +39,11 @@ typedef struct {
|
|||||||
us_to_ticks_func_t us_to_ticks; /*!< function to convert microseconds to ticks */
|
us_to_ticks_func_t us_to_ticks; /*!< function to convert microseconds to ticks */
|
||||||
} systimer_hal_tick_rate_ops_t;
|
} systimer_hal_tick_rate_ops_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Systimer clock source
|
||||||
|
*/
|
||||||
|
typedef soc_periph_systimer_clk_src_t systimer_clock_source_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief initialize systimer in HAL layer
|
* @brief initialize systimer in HAL layer
|
||||||
*/
|
*/
|
||||||
@@ -120,6 +126,16 @@ void systimer_hal_counter_can_stall_by_cpu(systimer_hal_context_t *hal, uint32_t
|
|||||||
void systimer_hal_set_steps_per_tick(systimer_hal_context_t *hal, int clock_source, uint32_t steps);
|
void systimer_hal_set_steps_per_tick(systimer_hal_context_t *hal, int clock_source, uint32_t steps);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Set Systimer clock source
|
||||||
|
*/
|
||||||
|
void systimer_hal_set_clock_source(systimer_hal_context_t *hal, systimer_clock_source_t clk_src);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Get Systimer clock source
|
||||||
|
*/
|
||||||
|
systimer_clock_source_t systimer_hal_get_clock_source(systimer_hal_context_t *hal);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@@ -24,6 +24,18 @@ void systimer_hal_deinit(systimer_hal_context_t *hal)
|
|||||||
hal->dev = NULL;
|
hal->dev = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void systimer_hal_set_clock_source(systimer_hal_context_t *hal, systimer_clock_source_t clk_src)
|
||||||
|
{
|
||||||
|
(void)hal;
|
||||||
|
systimer_ll_set_clock_source(clk_src);
|
||||||
|
}
|
||||||
|
|
||||||
|
systimer_clock_source_t systimer_hal_get_clock_source(systimer_hal_context_t *hal)
|
||||||
|
{
|
||||||
|
(void)hal;
|
||||||
|
return systimer_ll_get_clock_source();
|
||||||
|
}
|
||||||
|
|
||||||
void systimer_hal_set_tick_rate_ops(systimer_hal_context_t *hal, systimer_hal_tick_rate_ops_t *ops)
|
void systimer_hal_set_tick_rate_ops(systimer_hal_context_t *hal, systimer_hal_tick_rate_ops_t *ops)
|
||||||
{
|
{
|
||||||
hal->ticks_to_us = ops->ticks_to_us;
|
hal->ticks_to_us = ops->ticks_to_us;
|
||||||
|
@@ -117,6 +117,15 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_APLL, /*!< APLL is sourced from PLL, and its frequency is configurable through APLL configuration registers */
|
SOC_MOD_CLK_APLL, /*!< APLL is sourced from PLL, and its frequency is configurable through APLL configuration registers */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@@ -111,6 +111,15 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_XTAL, /*!< XTAL_CLK comes from the external 26/40MHz crystal */
|
SOC_MOD_CLK_XTAL, /*!< XTAL_CLK comes from the external 26/40MHz crystal */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@@ -113,6 +113,16 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_XTAL, /*!< XTAL_CLK comes from the external 40MHz crystal */
|
SOC_MOD_CLK_XTAL, /*!< XTAL_CLK comes from the external 40MHz crystal */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -663,6 +663,10 @@ config SOC_SYSTIMER_FIXED_DIVIDER
|
|||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config SOC_SYSTIMER_SUPPORT_RC_FAST
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
|
||||||
config SOC_SYSTIMER_INT_LEVEL
|
config SOC_SYSTIMER_INT_LEVEL
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
@@ -116,6 +116,17 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_XTAL, /*!< XTAL_CLK comes from the external 40MHz crystal */
|
SOC_MOD_CLK_XTAL, /*!< XTAL_CLK comes from the external 40MHz crystal */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_RC_FAST = SOC_MOD_CLK_RC_FAST, /*!< SYSTIMER source clock is RC_FAST */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -336,6 +336,7 @@
|
|||||||
#define SOC_SYSTIMER_BIT_WIDTH_LO 32 // Bit width of systimer low part
|
#define SOC_SYSTIMER_BIT_WIDTH_LO 32 // Bit width of systimer low part
|
||||||
#define SOC_SYSTIMER_BIT_WIDTH_HI 20 // Bit width of systimer high part
|
#define SOC_SYSTIMER_BIT_WIDTH_HI 20 // Bit width of systimer high part
|
||||||
#define SOC_SYSTIMER_FIXED_DIVIDER 1 // Clock source divider is fixed: 2.5
|
#define SOC_SYSTIMER_FIXED_DIVIDER 1 // Clock source divider is fixed: 2.5
|
||||||
|
#define SOC_SYSTIMER_SUPPORT_RC_FAST 1 // Systimer can use RC_FAST clock source
|
||||||
#define SOC_SYSTIMER_INT_LEVEL 1 // Systimer peripheral uses level interrupt
|
#define SOC_SYSTIMER_INT_LEVEL 1 // Systimer peripheral uses level interrupt
|
||||||
#define SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 // Systimer peripheral can generate interrupt immediately if t(target) > t(current)
|
#define SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 // Systimer peripheral can generate interrupt immediately if t(target) > t(current)
|
||||||
|
|
||||||
|
@@ -118,6 +118,15 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_PLL, /*< PLL_CLK is the output of 32MHz crystal oscillator frequency multiplier, 96MHz */
|
SOC_MOD_CLK_PLL, /*< PLL_CLK is the output of 32MHz crystal oscillator frequency multiplier, 96MHz */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@@ -115,6 +115,15 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_TEMP_SENSOR, /*!< TEMP_SENSOR_CLK comes directly from the internal 8MHz rc oscillator */
|
SOC_MOD_CLK_TEMP_SENSOR, /*!< TEMP_SENSOR_CLK comes directly from the internal 8MHz rc oscillator */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@@ -114,6 +114,15 @@ typedef enum {
|
|||||||
SOC_MOD_CLK_TEMP_SENSOR, /*!< TEMP_SENSOR_CLK comes directly from the internal 20MHz rc oscillator */
|
SOC_MOD_CLK_TEMP_SENSOR, /*!< TEMP_SENSOR_CLK comes directly from the internal 20MHz rc oscillator */
|
||||||
} soc_module_clk_t;
|
} soc_module_clk_t;
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////SYSTIMER///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of SYSTIMER clock source
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SYSTIMER_CLK_SRC_XTAL = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock is XTAL */
|
||||||
|
SYSTIMER_CLK_SRC_DEFAULT = SOC_MOD_CLK_XTAL, /*!< SYSTIMER source clock default choice is XTAL */
|
||||||
|
} soc_periph_systimer_clk_src_t;
|
||||||
|
|
||||||
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////GPTimer///////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user