This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.h
102 lines (76 loc) · 3.4 KB
/
timer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
Copyright 2016 Chintalagiri Shashank, Quazar Technologies Pvt. Ltd.
This file is part of
Embedded bootstraps : hal-uC
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file hal_uc_timer.h
* @brief HAL for uC Timers
*
*
*/
#ifndef HAL_UC_TIMER_H
#define HAL_UC_TIMER_H
#include "map.h"
#ifdef uC_INCLUDE_TIMER_IFACE
/*
* Least common denominator timer configuration types :
*
* - UP : Count to TOP, Reset
* - UPDOWN : Count to TOP, Count to BOT
* - CONTINUOUS : Count to MAX
*
* On MSP430, this implementation reserves channel 0 for setting the period (TOP),
* so you would normally use CH1+ for specialized uses. On platforms like the
* MSP430, this implementation has the unfortunate side effect of making CH0
* unusable as a PWM in cases where TOP need not be changed. Being able to switch
* the top interrupt to the overflow interrupt would be useful, if messy.
*
* Supported configuration types :
*
* - LF Periodic Timer : UP, other channels can be used to relative phase shift.
* - Edge Counting : CONTINUOUS. all channels can be used to hook specific counts.
* - PWM : UP/CONTINUOUS, other channels have duty cycle set by CHx CCR.
*/
// Initialize timer clock source, default prescaler.
static inline void timer_init(uint8_t intfnum);
// Change timer prescaler.
static inline void timer_set_prescaler(uint8_t intfnum, uint8_t prescaler);
// Start the timer in the provided mode.
static inline void timer_set_mode(uint8_t intfnum, uint8_t mode);
// Enable the timer overflow interrupt.
static inline void timer_enable_int_overflow(uint8_t intfnum);
// Disable the timer overflow interrupt.
static inline void timer_disable_int_overflow(uint8_t intfnum);
// Enable the timer top interrupt.
static inline void timer_enable_int_top(uint8_t intfnum);
// Disable the timer top interrupt.
static inline void timer_disable_int_top(uint8_t intfnum);
// Set TOP for the timer.
static inline void timer_set_top(uint8_t intfnum, uint16_t top);
// Get TOP for the timer.
static inline uint16_t timer_get_top(uint8_t intfnum);
// Set output mode for the timer channel.
static inline void timer_set_outmode_ch( uint8_t intfnum, uint8_t channel, uint8_t outmode);
// Enable the compare match interrupt for the timer channel.
static inline void timer_enable_int_ch ( uint8_t intfnum, uint8_t channel);
// Disable the compare match interrupt for the timer channel.
static inline void timer_disable_int_ch( uint8_t intfnum, uint8_t channel);
// Set the channel compare match value.
static inline void timer_set_cmr_ch(uint8_t intfnum, uint8_t channel, uint16_t cm);
// Get the channel compare match value.
static inline uint16_t timer_get_cmr_ch(uint8_t intfnum, uint8_t channel);
#endif
#include "uc/timer_impl.h"
#include "uc/timer_handlers.h"
#endif