summaryrefslogtreecommitdiff
path: root/os/drivers/clock/stm32f769_clock_control.h
blob: 23cfb906bc0e2cb421eea928827ac701b135e6b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __STM32F769_CLOCK_CONTROL_H__
#define __STM32F769_CLOCK_CONTROL_H__

#include <stdint.h>
#include <drivers/include/device.h>

int stm32f769_clock_control_on(uint16_t id);
int stm32f769_clock_control_off(uint16_t id);
int stm32f769_clock_control_get_rate(uint16_t id, uint32_t *rate);
int stm32f769_clock_control_init(struct device *dev);
int stm32f769_init_tick (void);

#endif/*__STM32F769_CLOCK_CONTROL_H__*/