#ifndef __pll_h__
#define __pll_h__

#ifdef __cplusplus
extern "C" {
#endif

int pllInit(void);
unsigned int pllGetCpuFreq(void);
unsigned int pllGetPeriphFreq(void);
unsigned int pllGetPeriphDivider(void);
int pllSetPeriphDivider(unsigned int setDivider);

#ifdef __cplusplus
}
#endif

#endif /* __pll_h__ */

