Subversion Repositories FlightCtrl

Rev

Rev 2081 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2081 Rev 2093
Line 1... Line 1...
1
#ifndef _HOTTMENU_H
1
#ifndef _HOTTMENU_H
2
#define _HOTTMENU_H
2
#define _HOTTMENU_H
Line -... Line 3...
-
 
3
 
-
 
4
typedef struct{
-
 
5
  char offset;
-
 
6
  unsigned char min;
-
 
7
  unsigned char max;
-
 
8
  char name[4];
-
 
9
  unsigned char *Variable;
-
 
10
} Parameter_List_t;
-
 
11
 
-
 
12
#define MAXPARAM 43 //Muss eine ungerade Zahl sein
-
 
13
 
-
 
14
extern const Parameter_List_t Parameter_List[];
-
 
15
 
3
 
16
 
Line 4... Line 17...
4
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))
17
#if ((defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__)))
5
 
18
 
Line -... Line 19...
-
 
19
#define MAX_ERR_NUMBER (29+1)
-
 
20
extern const char PROGMEM NC_ERROR_TEXT[MAX_ERR_NUMBER][17];
-
 
21
 
-
 
22
extern char dummy;
6
#define MAX_ERR_NUMBER (29+1)
23
 
7
extern const char PROGMEM NC_ERROR_TEXT[MAX_ERR_NUMBER][17];
24
 
Line 8... Line 25...
8
 
25