Neopixel
system.c
gehe zur Dokumentation dieser Datei
1 /******************************************************************************/
2 /*Files to Include */
3 /******************************************************************************/
4 
5 #if defined(__XC)
6  #include <xc.h> /* XC8 General Include File */
7 #elif defined(HI_TECH_C)
8  #include <htc.h> /* HiTech General Include File */
9 #elif defined(__18CXX)
10  #include <p18cxxx.h> /* C18 General Include File */
11 #endif
12 
13 #if defined(__XC) || defined(HI_TECH_C)
14 
15 #include <stdint.h> /* For uint8_t definition */
16 #include <stdbool.h> /* For true/false definition */
17 
18 #endif
19 
20 #include "system.h"
21 
22 /* Refer to the device datasheet for information about available
23 oscillator configurations. */
25 {
26  /* TODO Add clock switching code if appropriate. */
27 
28  OSCCON = 0b01111000;
29 
30  /* Typical actions in this function are to tweak the oscillator tuning
31  register, select new clock sources, and to wait until new clock sources
32  are stable before resuming execution of the main project. */
33 }
void ConfigureOscillator(void)
Definition: system.c:24