Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
730 | woggle | 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 LED1_OFF PORTC |= (1 << PC3) |
||
48 | #define LED1_ON PORTC &= ~(1 << PC3) |
||
49 | #define LED1_TOGGLE PORTC ^= (1 << PC3) |
||
50 | |||
51 | #define LED2_OFF PORTD |= (1 << PD4) |
||
52 | #define LED2_ON PORTD &= ~(1 << PD4) |
||
53 | #define LED2_TOGGLE PORTD ^= (1 << PD4) |
||
54 | |||
55 | #define LED3_OFF PORTD |= (1 << PD5) |
||
56 | #define LED3_ON PORTD &= ~(1 << PD5) |
||
57 | #define LED3_TOGGLE PORTD ^= (1 << PD5) |
||
58 | |||
59 | #define LED4_OFF PORTD |= (1 << PD6) |
||
60 | #define LED4_ON PORTD &= ~(1 << PD6) |
||
61 | #define LED4_TOGGLE PORTD ^= (1 << PD6) |
||
62 | |||
63 | #define LED5_OFF PORTC |= (1 << PC4) |
||
64 | #define LED5_ON PORTC &= ~(1 << PC4) |
||
65 | #define LED5_TOGGLE PORTC ^= (1 << PC4) |
||
66 | |||
67 | #define LED6_OFF PORTC |= (1 << PC2) |
||
68 | #define LED6_ON PORTC &= ~(1 << PC2) |
||
69 | #define LED6_TOGGLE PORTC ^= (1 << PC2) |
||
70 | |||
71 | #define LED_ALL_OFF {LED1_OFF; LED2_OFF; LED3_OFF; LED4_OFF; LED5_OFF; LED6_OFF;} |
||
72 | |||
73 | #define NC 1 |
||
74 | #define FC 2 |
||
75 | #define MK3MAG 3 |
||
76 | #define MKGPS 4 |
||
77 | |||
78 | //***************************************************************************** |
||
79 | // |
||
80 | extern volatile uint8_t mode; |
||
81 | extern uint8_t hardware; |
||
82 | extern uint8_t current_hardware; |
||
83 | |||
84 | #endif |