Basic Timer 7.
More...
#include <modm/platform/timer/timer_7.hpp>
|
enum | Event : uint32_t {
Break = TIM_EGR_BG,
CaptureCompareControlUpdate = TIM_EGR_COMG,
Trigger = TIM_EGR_TG,
CaptureCompare4 = TIM_EGR_CC4G,
CaptureCompare3 = TIM_EGR_CC3G,
CaptureCompare2 = TIM_EGR_CC2G,
CaptureCompare1 = TIM_EGR_CC1G,
Update = TIM_EGR_UG
} |
|
enum | Interrupt : uint32_t { Update = TIM_DIER_UIE
} |
|
enum | InterruptFlag : uint32_t { Update = TIM_SR_UIF
} |
|
enum | Mode : uint32_t { UpCounter = 0,
OneShotUpCounter = TIM_CR1_OPM
} |
|
|
| MODM_FLAGS32 (Interrupt) |
|
| MODM_FLAGS32 (InterruptFlag) |
|
|
template<class... Signals> |
static void | connect () |
|
static void | enable () |
|
static void | disable () |
|
static bool | isEnabled () |
|
static void | pause () |
|
static void | start () |
|
static void | setMode (Mode mode) |
|
static void | setPrescaler (uint16_t prescaler) |
|
static uint16_t | getPrescaler () |
|
static void | setOverflow (Value overflow) |
|
static Value | getOverflow () |
|
template<class SystemClock > |
static constexpr uint32_t | getClockFrequency () |
|
template<class SystemClock , class Rep , class Period > |
static Value | setPeriod (std::chrono::duration< Rep, Period > duration, bool autoApply=true) |
|
static void | generateEvent (Event ev) |
|
static void | applyAndReset () |
|
static Value | getValue () |
|
static void | setValue (Value value) |
|
static bool | isCountingUp () |
|
static bool | isCountingDown () |
|
static constexpr bool | hasAdvancedPwmControl () |
|
static void | enableInterruptVector (bool enable, uint32_t priority) |
|
static void | enableInterrupt (Interrupt_t interrupt) |
|
static void | disableInterrupt (Interrupt_t interrupt) |
|
static InterruptFlag_t | getInterruptFlags () |
|
static void | acknowledgeInterruptFlags (InterruptFlag_t interrupt) |
|
static void | enableInterruptVector (bool enable, uint8_t priority) |
|
Basic Timer 7.
Interrupt handler:
{
Timer7::resetInterruptFlags(Timer7::FLAG_UPDATE);
...
}
- Author
- Fabian Greif
static void modm::platform::BasicTimer::enableInterruptVector |
( |
bool |
enable, |
|
|
uint8_t |
priority |
|
) |
| |
|
inheritedstatic |
Enables or disables the Interrupt Vector.
- Parameters
-
enable | Enable/disable the interrupt vector |
priority | Priority of the interrupt vector (0=highest to 15=lowest). |
The documentation for this class was generated from the following files: