| ||
|
Shopping Cart
|
| Home | MP3 Player | 8051 Tools | All Projects | PJRC Store | Site Map |
|
You are here:
Teensy
|
|
|
MsTimer2 and FlexiTimer2 LibrariesMsTimer2, by Javier Valencia, lets you run a function every millisecond. FlexiTimer2 is version of MsTimer2 by Wim Leers, which makes the interval configurable.
Download: MsTimer2.zip
Hardware RequirementsTODO: table showing pins unusable as PWM: Teensy 2.0: 10 and 12. Teensy++ 2.0: 1 and 24.Basic UsageTODO: write thisExample ProgramTODO: add thisInterrupt Context IssuesMsTimer2 and FlexiTimer2 will call you function from interrupt context. Because it will interrupt your program at any moment, special design is necessary to share data with the rest of your program.Variables usually need to be "volatile" types. Volatile tells the compiler to avoid optimizations that assume variable can not spontaneously change. Because your function may change variables while your program is using them, the compiler needs this hint. But volatile alone is often not enough. When accessing shared variables, usually interrupts must be disabled. Even with volatile, if the interrupt changes a multi-byte variable between a sequence of instructions, it can be read incorrectly. If your data is multiple variables, such as an array and a count, usually interrupts need to be disabled for the entire sequence of your code which accesses the data. TODO: an example. DetailsThe original version of these libraries are at: |