diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-05-05 02:39:37 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-05-05 02:39:37 -0400 |
commit | fc30aa62ecb544a43828cd5dceb1696518b77acf (patch) | |
tree | eaf03cba2e3e86443b49acef3970814817d52f0a /examples | |
parent | f76e9746041b91150bf9c8997c47178a8100f5ae (diff) | |
download | librambutan-fc30aa62ecb544a43828cd5dceb1696518b77acf.tar.gz librambutan-fc30aa62ecb544a43828cd5dceb1696518b77acf.zip |
Changing integration date of function in examples/test-timer.cpp.
It would be nice to have something like a timer_set_period() in
libmaple proper that takes the period and the clock rate as
parameters, much the same as usart_set_baud_rate() does. No time for
that now, though, so punt to 0.1.0.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/test-timers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test-timers.cpp b/examples/test-timers.cpp index 545597f..247cc57 100644 --- a/examples/test-timers.cpp +++ b/examples/test-timers.cpp @@ -237,7 +237,7 @@ void testTimerChannels(timer_dev *dev) { } } -// FIXME [0.0.10] move this into the new wirish timer implementation +// FIXME [0.1.0] move some incarnation of this into timer.h void setTimerPeriod(timer_dev *dev, uint32 period_us) { if (!period_us) { // FIXME handle this case |