Neopixel
system.h
gehe zur Dokumentation dieser Datei
1 /*
2  * File: system.h
3  * Author: JM
4  *
5  * Created on 3. Januar 2015, 19:38
6  */
7 
8 /******************************************************************************/
9 /* System Level #define Macros */
10 /******************************************************************************/
11 
12 /* TODO Define system operating frequency */
13 
14 /* Microcontroller MIPs (FCY) */
15 #define _XTAL_FREQ 48000000L //used Oscillator frequency [Hz]
16 #define SYS_FREQ 48000000L
17 #define FCY SYS_FREQ/4
18 
19 /******************************************************************************/
20 /* System Function Prototypes */
21 /******************************************************************************/
22 
23 /* Custom oscillator configuration funtions, reset source evaluation
24 functions, and other non-peripheral microcontroller initialization functions
25 go here. */
26 
27 void ConfigureOscillator(void); /* Handles clock switching/osc initialization */
void ConfigureOscillator(void)
Definition: system.c:24