doc: efm32: cmu: move to peripheral_apis

Was completely undocumented before. Just needed different tagging so it
could be picked up.

No attempt at this stage of sharing more code between the cmu modules.
This commit is contained in:
Karl Palsson
2019-06-22 00:59:05 +00:00
parent 9bc432474b
commit 093edfb881
7 changed files with 62 additions and 18 deletions

View File

@@ -1,3 +1,6 @@
/** @addtogroup cmu_file CMU peripheral API
* @ingroup peripheral_apis
*/
/*
* This file is part of the libopencm3 project.
*
@@ -20,6 +23,8 @@
#include <libopencm3/efm32/cmu.h>
#include <libopencm3/efm32/msc.h>
/**@{*/
/**
* Enable CMU registers lock.
*/
@@ -270,3 +275,5 @@ void cmu_clock_setup_in_hfxo_out_48mhz(void)
/* wait till HFXO not selected */
while (cmu_get_hfclk_source() != HFXO);
}
/**@}*/