Renamed clock-enable manager to rcc manager and improve some header files with doxygen comments

This commit is contained in:
2020-12-01 21:00:23 +01:00
parent ef8e6231ff
commit daaf848e0c
21 changed files with 168 additions and 23 deletions

View File

@@ -18,8 +18,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CLOCK_ENABLE_MANAGER_H__
#define __CLOCK_ENABLE_MANAGER_H__
#ifndef __RCC_MANAGER_H__
#define __RCC_MANAGER_H__
#include <stdint.h>
#include <stm-periph/stm32-gpio-macros.h>
@@ -64,4 +64,4 @@ int rcc_manager_enable_clock(volatile uint32_t *rcc_enable_register, uint8_t bit
*/
int rcc_manager_disable_clock(volatile uint32_t *rcc_enable_register, uint8_t bit_no);
#endif /* __CLOCK_ENABLE_MANAGER_H__ */
#endif /* __RCC_MANAGER_H__ */