RunCoreMark on STM32F091

Dependencies:   mbed

Fork of ClockControl by Michael Wei

ClockControl/ClockControl.h

Committer:
Simon_mbed
Date:
2015-09-03
Revision:
2:6a9131b3df01
Parent:
1:7d0a41d6624f

File content as of revision 2:6a9131b3df01:

/* mbed PowerControl Library
  * Copyright (c) 2010 Michael Wei
  */ 
  
//shouldn't have to include, but fixes weird problems with defines


#ifndef MBED_CLOCKCONTROL_H 
#define MBED_CLOCKCONTROL_H 

unsigned int setSystemFrequency(unsigned char clkDivider, unsigned char clkSrc, unsigned short M, unsigned char N);
void setPLL0Frequency(unsigned char clkSrc, unsigned short M, unsigned char N);
void setPLL1Frequency(unsigned char clkSrc, unsigned short M, unsigned char N);
#endif