Difference between revisions of "STM32 Timers"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
To be added | To be added | ||
+ | |||
+ | == How to find the documentation == | ||
+ | |||
+ | As mentioned elsewhere, [[ST]] manufacture an incredible number of different [[STM32]] [[MCU]]s. It might appear hard to find the information about the one specific [[MCU]] one is working on. There are in principle _two_ sources of documentation: | ||
+ | |||
+ | # the datasheet | ||
+ | # the reference manual | ||
+ | |||
+ | Each [[STM32]] [[MCU]] have a datasheet, which always provide an overview of the available timers for that specific [[MCU]], and a reference manual which provide all the details. | ||
== Basic Timer Operation == | == Basic Timer Operation == |
Revision as of 04:55, 12 September 2021
What is a timer?
To be added
How to find the documentation
As mentioned elsewhere, ST manufacture an incredible number of different STM32 MCUs. It might appear hard to find the information about the one specific MCU one is working on. There are in principle _two_ sources of documentation:
- the datasheet
- the reference manual
Each STM32 MCU have a datasheet, which always provide an overview of the available timers for that specific MCU, and a reference manual which provide all the details.
Basic Timer Operation
To be added
Pulse Width Modulation
See STM32 Pulse Width Modulation.