![]() |
Mbed OS Reference
|
Low level interface to the microsecond ticker of a target. More...
Modules | |
Microsecond Ticker tests | |
Tests to validate the proper implementation of the microsecond ticker. | |
Ticker Hal | |
Low level interface to the ticker of a target. | |
Ticker Tests | |
Tests to validate the proper implementation of a ticker. | |
Functions | |
ticker_irq_handler_type | set_us_ticker_irq_handler (ticker_irq_handler_type ticker_irq_handler) |
Set ticker IRQ handler. | |
const ticker_data_t * | get_us_ticker_data (void) |
Get ticker's data. | |
void | us_ticker_irq_handler (void) |
The wrapper for ticker_irq_handler, to pass us ticker's data. | |
void | us_ticker_init (void) |
Initialize the ticker. | |
void | us_ticker_free (void) |
Deinitialize the us ticker. | |
uint32_t() | us_ticker_read (void) |
Read the current counter. | |
void | us_ticker_set_interrupt (timestamp_t timestamp) |
Set interrupt to fire at specified timestamp. | |
void | us_ticker_disable_interrupt (void) |
Disable us ticker interrupt. | |
void | us_ticker_clear_interrupt (void) |
Clear the us ticker interrupt. | |
void | us_ticker_fire_interrupt (void) |
Set pending interrupt that should be fired right away. | |
const ticker_info_t * | us_ticker_get_info (void) |
Get frequency and counter bits of this ticker. | |
Low level interface to the microsecond ticker of a target.
To permit compile-time optimization, particularly of wait_us, the following macros should be defined by a target's device.h:
US_TICKER_PERIOD_NUM, US_TICKER_PERIOD_DEN: These denote the ratio (numerator, denominator) of the ticker period to a microsecond. For example, an 8MHz ticker would have NUM = 1, DEN = 8; a 1MHz ticker would have NUM = 1, DEN = 1; a 250kHz ticker would have NUM = 4, DEN = 1. Both numerator and denominator must be 16 bits or less, but need not be fully simplified.
US_TICKER_MASK: The value mask for the ticker - eg 0x07FFFFFF for a 27-bit ticker.
If any are defined, all 3 must be defined, and the macros are checked for consistency with us_ticker_get_info by test us_ticker_info_test.
ticker_irq_handler_type set_us_ticker_irq_handler | ( | ticker_irq_handler_type | ticker_irq_handler | ) |
Set ticker IRQ handler.
ticker_irq_handler | IRQ handler to be connected |
const ticker_data_t * get_us_ticker_data | ( | void | ) |
Get ticker's data.
void us_ticker_irq_handler | ( | void | ) |
The wrapper for ticker_irq_handler, to pass us ticker's data.
void us_ticker_init | ( | void | ) |
Initialize the ticker.
Initialize or re-initialize the ticker. This resets all the clocking and prescaler registers, along with disabling the compare interrupt.
Implementations must tolerate this function being called multiple times, and subsequent calls after the first one shall clear any configured interrupt.
Pseudo Code:
void us_ticker_free | ( | void | ) |
Deinitialize the us ticker.
Powerdown the us ticker in preparation for sleep, powerdown, or reset.
After this function is called, no other ticker functions should be called except us_ticker_init(), calling any function other than init is undefined.
Pseudo Code:
uint32_t() us_ticker_read | ( | void | ) |
Read the current counter.
Read the current counter value without performing frequency conversions. If no rollover has occurred, the seconds passed since us_ticker_init() was called can be found by dividing the ticks returned by this function by the frequency returned by us_ticker_get_info.
Pseudo Code:
void us_ticker_set_interrupt | ( | timestamp_t | timestamp | ) |
Set interrupt to fire at specified timestamp.
timestamp | The time in ticks to be set. Guaranteed to be between 0 and 2^bits-1, where bits is the number of bits returned by us_ticker_get_info() |
timestamp
is less than the current time read by the ticker, then the intention is to set an interrupt for once the ticker rolls over and reaches this time.us_ticker_fire_interrupt()
is called instead. It will also ensure that if we want to wake up far in the future, we will instead set a wakeup for about (rollover period/2) ticks in the future, then reschedule the timer for the correct time.Calling this function with timestamp of more than the supported number of bits returned by us_ticker_get_info results in undefined behavior.
If the timer interrupt is pending when this function is called (e.g. due to the ticker being set, but the interrupt being disabled before it could fire), this function shall clear the pending interrupt before reenabling and setting it to prevent a spurious execution of the interrupt.
Pseudo Code:
void us_ticker_disable_interrupt | ( | void | ) |
Disable us ticker interrupt.
Pseudo Code:
void us_ticker_clear_interrupt | ( | void | ) |
Clear the us ticker interrupt.
This is called from Mbed's interrupt handler and should clear the interrupt flag in the peripheral to stop the interrupt from being executed again after it returns. This does not do anything if called before the interrupt fires (e.g. it doesn't cancel the interrupt if it's set in the future).
Pseudo Code:
void us_ticker_fire_interrupt | ( | void | ) |
Set pending interrupt that should be fired right away.
The ticker should be initialized prior calling this function.
Note: This function might be called from the ticker ISR, in which case it should schedule the ticker ISR to be executed again as soon as it returns.
Pseudo Code:
const ticker_info_t * us_ticker_get_info | ( | void | ) |
Get frequency and counter bits of this ticker.
Pseudo Code: