Guest User

system.h

a guest
Mar 14th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.52 KB | None | 0 0
  1. /******************************************************************************/
  2. /* System Level #define Macros                                                */
  3. /******************************************************************************/
  4.  
  5. /* TODO Define system operating frequency */
  6.  
  7. #ifndef _SYSTEM_H
  8.  
  9. #define _SYSTEM_H
  10.  
  11. /* Microcontroller MIPs (FCY) */
  12. #define SYS_FREQ        8000000L
  13. #define FCY             SYS_FREQ/4
  14.  
  15. /* Handles clock switching/osc initialization */
  16. void ConfigureOscillator(void);
  17.  
  18. #endif
Advertisement
Add Comment
Please, Sign In to add comment