PIC24_DOG
system.c
gehe zur Dokumentation dieser Datei
1 /******************************************************************************/
2 /* Files to Include */
3 /******************************************************************************/
4 
5 /* Device header file */
6 #if defined(__XC16__)
7  #include <xc.h>
8 #elif defined(__C30__)
9  #if defined(__PIC24E__)
10  #include <p24Exxxx.h>
11  #elif defined (__PIC24F__)||defined (__PIC24FK__)
12  #include <p24Fxxxx.h>
13  #elif defined(__PIC24H__)
14  #include <p24Hxxxx.h>
15  #endif
16 #endif
17 
18 #include <stdint.h> /* For uint32_t definition */
19 #include <stdbool.h> /* For true/false definition */
20 
21 #include "system.h" /* variables/params used by system.c */
22 
23 /******************************************************************************/
24 /* System Level Functions */
25 /* */
26 /* Custom oscillator configuration funtions, reset source evaluation */
27 /* functions, and other non-peripheral microcontroller initialization */
28 /* functions get placed in system.c */
29 /* */
30 /******************************************************************************/
31 
32 /* Refer to the device Family Reference Manual Oscillator section for
33 information about available oscillator configurations. Typically
34 this would involve configuring the oscillator tuning register or clock
35 switching useing the compiler's __builtin_write_OSCCON functions.
36 Refer to the C Compiler for PIC24 MCUs and dsPIC DSCs User Guide in the
37 compiler installation directory /doc folder for documentation on the
38 __builtin functions. */
39 
40 /* TODO Add clock switching code if appropriate. An example stub is below. */
42 {
43 
44 #if 0
45 
46  /* Disable Watch Dog Timer */
47  RCONbits.SWDTEN = 0;
48 
49  /* When clock switch occurs switch to Prim Osc (HS, XT, EC)with PLL */
50  __builtin_write_OSCCONH(0x03); /* Set OSCCONH for clock switch */
51  __builtin_write_OSCCONL(0x01); /* Start clock switching */
52  while(OSCCONbits.COSC != 0b011);
53 
54  /* Wait for Clock switch to occur */
55  /* Wait for PLL to lock, if PLL is used */
56  /* while(OSCCONbits.LOCK != 1); */
57 
58 #endif
59 
60 }
61 
void ConfigureOscillator(void)
Definition: system.c:41