/ MCUME_teensy41 / teensy64 / settings.h
settings.h
 1  /*
 2    Copyright Frank Bösing, 2017
 3  
 4    This file is part of Teensy64.
 5  
 6      Teensy64 is free software: you can redistribute it and/or modify
 7      it under the terms of the GNU General Public License as published by
 8      the Free Software Foundation, either version 3 of the License, or
 9      (at your option) any later version.
10  
11      Teensy64 is distributed in the hope that it will be useful,
12      but WITHOUT ANY WARRANTY; without even the implied warranty of
13      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14      GNU General Public License for more details.
15  
16      You should have received a copy of the GNU General Public License
17      along with Teensy64.  If not, see <http://www.gnu.org/licenses/>.
18  
19      Diese Datei ist Teil von Teensy64.
20  
21      Teensy64 ist Freie Software: Sie können es unter den Bedingungen
22      der GNU General Public License, wie von der Free Software Foundation,
23      Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
24      veröffentlichten Version, weiterverbreiten und/oder modifizieren.
25  
26      Teensy64 wird in der Hoffnung, dass es nützlich sein wird, aber
27      OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
28      Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
29      Siehe die GNU General Public License für weitere Details.
30  
31      Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
32      Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
33  
34  */
35  
36  #ifndef settings_h_
37  #define settings_h_
38  
39  #ifndef VGA
40  #define VGA 			0 	//use 0 for ILI9341 Display
41  #endif
42  
43  #ifndef PS2KEYBOARD
44  #define PS2KEYBOARD 	0	//Use 0 for USB-HOST
45  #endif
46  
47  
48  //Note: PAL/NTSC are EMULATED - This is not the real videomode!
49  #ifndef PAL
50  #define PAL           1 //use 0 for NTSC
51  #endif
52  
53  #ifndef FASTBOOT
54  #define FASTBOOT      1 //0 to disable fastboot
55  #endif
56  
57  
58  #define EXACTTIMINGDURATION 600ul //ms exact timing after IEC-BUS activity
59  
60  
61  
62  #endif