clock.h
Go to the documentation of this file.
1 /*
2  * File: clock.h
3  * Author: Chris Hajduk
4  *
5  * Created on September 8, 2015, 11:16 PM
6  */
7 
8 #ifndef CLOCK_H
9 #define CLOCK_H
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 #define CLOCK_FREQUENCY 40000000
16 
17 void useFRCPLLClock();
18 
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* CLOCK_H */
25 
void useFRCPLLClock()
Definition: clock.c:11