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 
20 /* Microcontroller MIPs (FCY) */
21 #define _XTAL_FREQ 48000000L //used Oscillator frequency [Hz]
22 #define SYS_FREQ 48000000L
23 #define FCY SYS_FREQ/4
24 
25 /******************************************************************************/
26 /* System Function Prototypes */
27 /******************************************************************************/
28 
29 /* Custom oscillator configuration funtions, reset source evaluation
30 functions, and other non-peripheral microcontroller initialization functions
31 go here. */
32 
33 void ConfigureOscillator(void); /* Handles clock switching/osc initialization */
void ConfigureOscillator(void)
Definition: system.c:24