Rev 1134 | Rev 1141 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1134 | thjac | 1 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
2 | // + Copyright (c) 04.2007 Holger Buss |
||
3 | // + only for non-profit use |
||
4 | // + www.MikroKopter.com |
||
5 | // + see the File "License.txt" for further Informations |
||
6 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
7 | #include "main.h" |
||
8 | #include "altcon.h" |
||
1139 | thjac | 9 | #include "pitch.h" |
10 | #include "pitch_md.h" |
||
11 | #include "parameter.h" |
||
1134 | thjac | 12 | |
13 | unsigned int TestInt = 0; |
||
14 | #define ARRAYGROESSE 10 |
||
15 | unsigned char Array[ARRAYGROESSE] = {1,2,3,4,5,6,7,8,9,10}; |
||
16 | char DisplayBuff[80] = "Hallo Welt"; |
||
17 | unsigned char DispPtr = 0; |
||
18 | |||
1139 | thjac | 19 | unsigned char MaxMenue = 12; |
1134 | thjac | 20 | unsigned char MenuePunkt = 0; |
21 | unsigned char RemoteKeys = 0; |
||
22 | |||
23 | #define KEY1 0x01 |
||
24 | #define KEY2 0x02 |
||
25 | #define KEY3 0x04 |
||
26 | #define KEY4 0x08 |
||
27 | #define KEY5 0x10 |
||
28 | |||
29 | void LcdClear(void) |
||
30 | { |
||
31 | unsigned char i; |
||
32 | for(i=0;i<80;i++) DisplayBuff[i] = ' '; |
||
33 | } |
||
34 | |||
35 | void Menu(void) |
||
36 | { |
||
37 | |||
38 | if(MenuePunkt > MaxMenue) MenuePunkt = MaxMenue; |
||
39 | |||
40 | if(RemoteKeys & KEY1) { if(MenuePunkt) MenuePunkt--; else MenuePunkt = MaxMenue;} |
||
41 | if(RemoteKeys & KEY2) { if(MenuePunkt == MaxMenue) MenuePunkt = 0; else MenuePunkt++;} |
||
42 | if((RemoteKeys & KEY1) && (RemoteKeys & KEY2)) MenuePunkt = 0; |
||
43 | LcdClear(); |
||
44 | if(MenuePunkt < 10) {LCD_printfxy(17,0,"[%i]",MenuePunkt);} |
||
45 | else {LCD_printfxy(16,0,"[%i]",MenuePunkt);}; |
||
46 | |||
47 | |||
48 | switch(MenuePunkt) |
||
49 | { |
||
50 | case 0: |
||
51 | LCD_printfxy(0,0,"+ MikroKopter +"); |
||
52 | LCD_printfxy(0,1,"HW:V%d.%d SW:%d.%d%c",PlatinenVersion/10,PlatinenVersion%10, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH +'a'); |
||
53 | LCD_printfxy(0,2,"Setting: %d ",GetActiveParamSetNumber()); |
||
54 | LCD_printfxy(0,3,"(c) Holger Buss"); |
||
55 | // if(RemoteTasten & KEY3) TestInt--; |
||
56 | // if(RemoteTasten & KEY4) TestInt++; |
||
57 | break; |
||
58 | case 1: |
||
59 | if(EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) |
||
60 | { |
||
61 | LCD_printfxy(0,0,"RegOffset: %5i", pressureOffset ); |
||
62 | LCD_printfxy(0,1,"Luftdruck: %5i", airPressure ); |
||
63 | LCD_printfxy(0,2,"Off : %5i",DruckOffsetSetting); |
||
64 | } |
||
65 | else |
||
66 | { |
||
67 | LCD_printfxy(0,1,"Keine "); |
||
68 | LCD_printfxy(0,2,"Höhenregelung"); |
||
69 | } |
||
70 | |||
71 | break; |
||
72 | case 2: |
||
73 | LCD_printfxy(0,0,"akt. Lage"); |
||
74 | LCD_printfxy(0,1,"Nick: %5i",IntegralNick/1024); |
||
75 | LCD_printfxy(0,2,"Roll: %5i",IntegralRoll/1024); |
||
76 | LCD_printfxy(0,3,"Kompass: %5i",KompassValue); |
||
77 | break; |
||
78 | case 3: |
||
79 | LCD_printfxy(0,0,"K1:%4i K2:%4i ",PPM_in[1],PPM_in[2]); |
||
80 | LCD_printfxy(0,1,"K3:%4i K4:%4i ",PPM_in[3],PPM_in[4]); |
||
81 | LCD_printfxy(0,2,"K5:%4i K6:%4i ",PPM_in[5],PPM_in[6]); |
||
82 | LCD_printfxy(0,3,"K7:%4i K8:%4i ",PPM_in[7],PPM_in[8]); |
||
83 | break; |
||
84 | case 4: |
||
85 | LCD_printfxy(0,0,"Ni:%4i Ro:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_NICK]],PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]); |
||
86 | LCD_printfxy(0,1,"Gs:%4i Gi:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_GAS]],PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]); |
||
87 | LCD_printfxy(0,2,"P1:%4i P2:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]],PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]]); |
||
88 | LCD_printfxy(0,3,"P3:%4i P4:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]],PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]]); |
||
89 | break; |
||
90 | case 5: |
||
91 | LCD_printfxy(0,0,"Gyro - Sensor"); |
||
92 | if(PlatinenVersion == 10) |
||
93 | { |
||
94 | LCD_printfxy(0,1,"Nick %4i (%3i)",AdWertNick - AdNeutralNick, AdNeutralNick); |
||
95 | LCD_printfxy(0,2,"Roll %4i (%3i)",AdWertRoll - AdNeutralRoll, AdNeutralRoll); |
||
96 | LCD_printfxy(0,3,"Gier %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier); |
||
97 | } |
||
98 | else |
||
99 | if((PlatinenVersion == 11) || (PlatinenVersion == 20)) |
||
100 | { |
||
101 | LCD_printfxy(0,1,"Nick %4i (%3i)",AdWertNick - AdNeutralNick, AdNeutralNick/2); |
||
102 | LCD_printfxy(0,2,"Roll %4i (%3i)",AdWertRoll - AdNeutralRoll, AdNeutralRoll/2); |
||
103 | LCD_printfxy(0,3,"Gier %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2); |
||
104 | } |
||
105 | else |
||
106 | if(PlatinenVersion == 13) |
||
107 | { |
||
108 | LCD_printfxy(0,1,"Nick %4i (%3i)(%3i)",AdWertNick - AdNeutralNick, AdNeutralNick/2,AnalogOffsetNick); |
||
109 | LCD_printfxy(0,2,"Roll %4i (%3i)(%3i)",AdWertRoll - AdNeutralRoll, AdNeutralRoll/2,AnalogOffsetRoll); |
||
110 | LCD_printfxy(0,3,"Gier %4i (%3i)(%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2,AnalogOffsetGier); |
||
111 | } |
||
112 | |||
113 | break; |
||
114 | case 6: |
||
115 | LCD_printfxy(0,0,"ACC - Sensor"); |
||
116 | LCD_printfxy(0,1,"Nick %4i (%3i)",AdWertAccNick,NeutralAccX); |
||
117 | LCD_printfxy(0,2,"Roll %4i (%3i)",AdWertAccRoll,NeutralAccY); |
||
118 | LCD_printfxy(0,3,"Hoch %4i (%3i)",Mittelwert_AccHoch/*accumulate_AccHoch / messanzahl_AccHoch*/,(int)NeutralAccZ); |
||
119 | break; |
||
120 | case 7: |
||
121 | LCD_printfxy(0,1,"Spannung: %5i",UBat); |
||
122 | LCD_printfxy(0,2,"Empf.Pegel:%5i",SenderOkay); |
||
123 | break; |
||
124 | case 8: |
||
125 | LCD_printfxy(0,0,"Kompass "); |
||
126 | LCD_printfxy(0,1,"Richtung: %5i",KompassRichtung); |
||
127 | LCD_printfxy(0,2,"Messwert: %5i",KompassValue); |
||
128 | LCD_printfxy(0,3,"Start: %5i",KompassStartwert); |
||
129 | break; |
||
130 | case 9: |
||
131 | LCD_printfxy(0,0,"Poti1: %3i",Poti1); |
||
132 | LCD_printfxy(0,1,"Poti2: %3i",Poti2); |
||
133 | LCD_printfxy(0,2,"Poti3: %3i",Poti3); |
||
134 | LCD_printfxy(0,3,"Poti4: %3i",Poti4); |
||
135 | break; |
||
136 | case 10: |
||
137 | LCD_printfxy(0,0,"Servo " ); |
||
138 | LCD_printfxy(0,1,"Setpoint %3i",Parameter_ServoNickControl); |
||
139 | LCD_printfxy(0,2,"Stellung: %3i",ServoValue); |
||
140 | LCD_printfxy(0,3,"Range:%3i-%3i",EE_Parameter.ServoNickMin,EE_Parameter.ServoNickMax); |
||
141 | break; |
||
142 | case 11: |
||
143 | LCD_printfxy(0,0,"ExternControl " ); |
||
144 | LCD_printfxy(0,1,"Ni:%4i Ro:%4i ",ExternControl.Nick,ExternControl.Roll); |
||
145 | LCD_printfxy(0,2,"Gs:%4i Gi:%4i ",ExternControl.Gas,ExternControl.Gier); |
||
146 | LCD_printfxy(0,3,"Hi:%4i Cf:%4i ",ExternControl.Hight,ExternControl.Config); |
||
147 | break; |
||
1139 | thjac | 148 | case 12: |
149 | LCD_printfxy( 0, 0, "PitchSteuerung " ); |
||
150 | LCD_printfxy( 0, 1, "Modus: %s ", pitchModeStrings[ pitch_current_mode() ] ); |
||
151 | |||
152 | // MD-Modus |
||
153 | switch( pitch_current_mode() ) { |
||
154 | case PARAM_PITCH_MODE_MD: |
||
155 | LCD_printfxy( 0, 2, "Standgas: %3i ", pitch_hover_value() ); |
||
156 | break; |
||
157 | } |
||
158 | |||
159 | break; |
||
160 | |||
1134 | thjac | 161 | default: MaxMenue = MenuePunkt - 1; |
162 | MenuePunkt = 0; |
||
163 | break; |
||
164 | } |
||
165 | RemoteKeys = 0; |
||
166 | } |