18 lines
621 B
C
18 lines
621 B
C
|
/************************************************************************//**
|
||
|
* \file clock_216.h
|
||
|
* \brief Function to set the system clock to 216 MHz
|
||
|
* \author pascal (dot) sartoretti (at) hevs (dot) ch
|
||
|
***************************************************************************/
|
||
|
#ifndef __CLOCK_216_H
|
||
|
#define __CLOCK_216_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
/************************************************************************//**
|
||
|
* \brief Inits the system clock to 216 MHz
|
||
|
***************************************************************************/
|
||
|
extern void SystemClock_Config (void);
|
||
|
|
||
|
|
||
|
#endif /* __CLOCK_216_H */
|