Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
982 - 1
/*****************************************************************************
2
 *   Copyright (C) 2008 Thomas Kaiser, thomas@ft-fanpage.de                  *
3
 *   Copyright (C) 2009 Peter "woggle" Mack, mac@denich.net                  *
4
 *                                                                           *
5
 *   This program is free software; you can redistribute it and/or modify    *
6
 *   it under the terms of the GNU General Public License as published by    *
7
 *   the Free Software Foundation; either version 2 of the License.          *
8
 *                                                                           *
9
 *   This program is distributed in the hope that it will be useful,         *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of          *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *
12
 *   GNU General Public License for more details.                            *
13
 *                                                                           *
14
 *   You should have received a copy of the GNU General Public License       *
15
 *   along with this program; if not, write to the                           *
16
 *   Free Software Foundation, Inc.,                                         *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.               *
18
 *                                                                           *
19
 *                                                                           *
20
 *   Credits to:                                                             *
21
 *   Holger Buss & Ingo Busker from mikrokopter.de for the MK project + SVN  *
22
 *                          http://www.mikrokopter.de                        *
23
 *   Gregor "killagreg" Stobrawa for his version of the MK code              *
24
 *   Thomas Kaiser "thkais" for the original project. See                    *
25
 *                          http://www.ft-fanpage.de/mikrokopter/            *
26
 *                          http://forum.mikrokopter.de/topic-4061-1.html    *
27
 *   Claas Anders "CaScAdE" Rathje for providing the font and his C-OSD code *
28
 *                          http://www.mylifesucks.de/oss/c-osd/             *
29
 *****************************************************************************/
30
 
31
#ifndef _MAIN_H
32
#define _MAIN_H
33
 
34
//*****************************************************************************
35
// 
36
#define set_cs()    (PORTB |=  (1 << PB4))
37
#define clr_cs()    (PORTB &= ~(1 << PB4))
38
#define set_reset() (PORTB |=  (1 << PB2))
39
#define clr_reset() (PORTB &= ~(1 << PB2))
40
#define set_A0()    (PORTB |=  (1 << PB3))                      // Data
41
#define clr_A0()    (PORTB &= ~(1 << PB3))                      // Command
42
#define set_scl()   (PORTB |=  (1 << PB7))
43
#define clr_scl()   (PORTB &= ~(1 << PB7))
44
#define set_si()    (PORTB |=  (1 << PB5))
45
#define clr_si()    (PORTB &= ~(1 << PB5))
46
 
47
#define set_LED1()      (PORTC &= ~(1 << PC3))
48
#define clr_LED1()      (PORTC |=  (1 << PC3))
49
#define set_LED2()      (PORTC &= ~(1 << PC2))
50
#define clr_LED2()      (PORTC |=  (1 << PC2))
51
#define set_LED3()      (PORTB &= ~(1 << PB1))
52
#define clr_LED3()      (PORTB |=  (1 << PB1))
53
#define set_LED4()      (PORTB &= ~(1 << PB0))
54
#define clr_LED4()      (PORTB |=  (1 << PB0))
55
#define set_BEEP()      (PORTC &= ~(1 << PC6))
56
#define clr_BEEP()      (PORTC |=  (1 << PC6))
57
#define set_D_LIGHT()   (PORTD |= (1 << PD7))
58
#define clr_D_LIGHT()   (PORTD &= ~(1 << PD7))
59
#define set_WI232CMD()  (PORTD &= ~(1 << PD6))
60
#define clr_WI232CMD()  (PORTD |=  (1 << PD6))
61
 
62
#define NO              0
63
#define NC              1
64
#define FC              2
65
#define MK3MAG  3
66
#define MKGPS   4
67
#define Wi232   5
68
 
69
#define ENABLE_PWM
70
//#define HWVERSION1_2
71
//#define HWVERSION1_3
72
#define HWVERSION3_1
73
 
74
//*****************************************************************************
75
// 
76
extern volatile uint8_t mode;
77
extern uint8_t hardware;
78
extern uint8_t current_hardware;
79
 
80
#endif