mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
cpu/kinetis_common: Add state graph to MCG documentation
This commit is contained in:
parent
f6073c0aa4
commit
f9ed160fe2
@ -10,7 +10,8 @@
|
|||||||
* @defgroup cpu_kinetis_common_mcg Kinetis MCG
|
* @defgroup cpu_kinetis_common_mcg Kinetis MCG
|
||||||
* @ingroup cpu_kinetis_common
|
* @ingroup cpu_kinetis_common
|
||||||
* @brief Implementation of the Kinetis Multipurpose Clock Generator
|
* @brief Implementation of the Kinetis Multipurpose Clock Generator
|
||||||
* (MCG) driver.
|
* (MCG) driver
|
||||||
|
*
|
||||||
* Please add mcg.h in cpu conf.h
|
* Please add mcg.h in cpu conf.h
|
||||||
* and MCG configuration to periph_conf.h
|
* and MCG configuration to periph_conf.h
|
||||||
*
|
*
|
||||||
@ -37,6 +38,30 @@
|
|||||||
* - BLPE -> FEE
|
* - BLPE -> FEE
|
||||||
* - BLPI -> FEE
|
* - BLPI -> FEE
|
||||||
*
|
*
|
||||||
|
* \dot
|
||||||
|
* digraph states {
|
||||||
|
* layout=dot
|
||||||
|
* nodesep=0.5
|
||||||
|
* {rank=same Reset [shape=none] FEI FEE}
|
||||||
|
* {rank=same FBI FBE}
|
||||||
|
* {rank=same BLPI BLPE}
|
||||||
|
* Reset -> FEI
|
||||||
|
* FEI -> FEE [dir="both"]
|
||||||
|
* FEI -> FBE [dir="both"]
|
||||||
|
* FEI -> FBI [dir="both"]
|
||||||
|
* FEE -> FBI [dir="both"]
|
||||||
|
* FEE -> FBE [dir="both"]
|
||||||
|
* FBI -> FBE [dir="both"]
|
||||||
|
* FBI -> BLPI [dir="both"]
|
||||||
|
* FBE -> BLPE [dir="both"]
|
||||||
|
* PBE
|
||||||
|
* PEE
|
||||||
|
* FBE -> PBE [dir="both"]
|
||||||
|
* BLPE -> PBE [dir="both"]
|
||||||
|
* PBE -> PEE [dir="both"]
|
||||||
|
* }
|
||||||
|
* \enddot
|
||||||
|
*
|
||||||
* ### MCG Configuration Examples (for periph_conf.h) ###
|
* ### MCG Configuration Examples (for periph_conf.h) ###
|
||||||
*
|
*
|
||||||
* Example for FEI Mode (MCGOUTCLK = 20MHz ... 25MHz):
|
* Example for FEI Mode (MCGOUTCLK = 20MHz ... 25MHz):
|
||||||
|
Loading…
Reference in New Issue
Block a user