Skip to content
Snippets Groups Projects
Commit a42df69e authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

frdm-k64f: Add LPTMR configuration

parent b6abbad6
Branches
No related tags found
No related merge requests found
......@@ -70,18 +70,25 @@ static const clock_config_t clock_config = {
* @{
*/
#define PIT_NUMOF (2U)
#define PIT_CONFIG { \
{ \
.prescaler_ch = 0, \
.count_ch = 1, \
}, \
{ \
.prescaler_ch = 2, \
.count_ch = 3, \
}, \
#define PIT_CONFIG { \
{ \
.prescaler_ch = 0, \
.count_ch = 1, \
}, \
{ \
.prescaler_ch = 2, \
.count_ch = 3, \
}, \
}
#define LPTMR_NUMOF (0U)
#define LPTMR_CONFIG {}
#define LPTMR_NUMOF (1U)
#define LPTMR_CONFIG { \
{ \
.dev = LPTMR0, \
.irqn = LPTMR0_IRQn, \
.src = 2, \
.base_freq = 32768u, \
}, \
}
#define TIMER_NUMOF ((PIT_NUMOF) + (LPTMR_NUMOF))
#define PIT_BASECLOCK (CLOCK_BUSCLOCK)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment