PIC24_DOG
system.h
gehe zur Dokumentation dieser Datei
1 /******************************************************************************/
2 /* System Level #define Macros */
3 /******************************************************************************/
4 
5 /* TODO Define system operating frequency */
6 
7 /* Microcontroller MIPs (FCY) */
8 #define SYS_FREQ 8000000L
9 #define FCY SYS_FREQ/2
10 
11 /******************************************************************************/
12 /* System Function Prototypes */
13 /******************************************************************************/
14 
15 /* Custom oscillator configuration funtions, reset source evaluation
16 functions, and other non-peripheral microcontroller initialization functions
17 go here. */
18 
19 void ConfigureOscillator(void); /* Handles clock switching/osc initialization */
20 
void ConfigureOscillator(void)
Definition: system.c:41