Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1388 | Arthur | 1 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
2 | // + Copyright (c) Holger Buss, Ingo Busker |
||
3 | // + only for non-profit use |
||
4 | // + www.MikroKopter.com |
||
5 | // + porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed |
||
6 | // + see the File "License.txt" for further Informations |
||
7 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
8 | #include "main.h" |
||
9 | |||
10 | unsigned int TestInt = 0; |
||
11 | #define ARRAYGROESSE 10 |
||
12 | unsigned char Array[ARRAYGROESSE] = {1,2,3,4,5,6,7,8,9,10}; |
||
13 | char DisplayBuff[80] = "Hallo Welt"; |
||
14 | unsigned char DispPtr = 0; |
||
15 | |||
16 | unsigned char MaxMenue = 14; |
||
17 | unsigned char MenuePunkt = 0; |
||
18 | unsigned char RemoteKeys = 0; |
||
19 | |||
20 | #define KEY1 0x01 |
||
21 | #define KEY2 0x02 |
||
22 | #define KEY3 0x04 |
||
23 | #define KEY4 0x08 |
||
24 | #define KEY5 0x10 |
||
25 | |||
26 | void LcdClear(void) |
||
27 | { |
||
28 | unsigned char i; |
||
29 | for(i=0;i<80;i++) DisplayBuff[i] = ' '; |
||
30 | } |
||
31 | |||
32 | void Menu(void) |
||
33 | { |
||
34 | |||
35 | if(MenuePunkt > MaxMenue) MenuePunkt = MaxMenue; |
||
36 | |||
37 | if(RemoteKeys & KEY1) { if(MenuePunkt) MenuePunkt--; else MenuePunkt = MaxMenue;} |
||
38 | if(RemoteKeys & KEY2) { if(MenuePunkt == MaxMenue) MenuePunkt = 0; else MenuePunkt++;} |
||
39 | if((RemoteKeys & KEY1) && (RemoteKeys & KEY2)) MenuePunkt = 0; |
||
40 | LcdClear(); |
||
41 | if(MenuePunkt < 10) {LCD_printfxy(17,0,"[%i]",MenuePunkt);} |
||
42 | else {LCD_printfxy(16,0,"[%i]",MenuePunkt);}; |
||
43 | |||
44 | switch(MenuePunkt) |
||
45 | { |
||
46 | case 0: |
||
47 | LCD_printfxy(0,0,"+ MikroKopter +"); |
||
48 | // 091114 Modified the next line by adding -Arthur P after the verion text. |
||
49 | LCD_printfxy(0,1,"HW:V%d.%d SW:%d.%d%c-Arthur P",PlatinenVersion/10,PlatinenVersion%10, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH +'a'); |
||
50 | LCD_printfxy(0,2,"Setting:%d %s",GetActiveParamSetNumber(),Mixer.Name); |
||
51 | if(I2CTimeout < 6) LCD_printfxy(0,3,"I2C ERROR!!!") |
||
52 | else |
||
53 | if(MissingMotor) LCD_printfxy(0,3,"Missing BL-Ctrl:%d!!",MissingMotor) |
||
54 | else 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,"Hoehe: %5i",(int)(HoehenWert/5)); |
||
62 | LCD_printfxy(0,1,"SollHoehe: %5i",(int)(SollHoehe/5)); |
||
63 | LCD_printfxy(0,2,"Luftdruck: %5i",MessLuftdruck); |
||
64 | LCD_printfxy(0,3,"Off : %5i",OCR0A); |
||
65 | } |
||
66 | else |
||
67 | { |
||
68 | LCD_printfxy(0,1,"Keine "); |
||
69 | LCD_printfxy(0,2,"Höhenregelung"); |
||
70 | } |
||
71 | |||
72 | break; |
||
73 | case 2: |
||
74 | LCD_printfxy(0,0,"akt. Lage"); |
||
75 | LCD_printfxy(0,1,"Nick: %5i",IntegralNick/1024); |
||
76 | LCD_printfxy(0,2,"Roll: %5i",IntegralRoll/1024); |
||
77 | LCD_printfxy(0,3,"Kompass: %5i",KompassValue); |
||
78 | break; |
||
79 | case 3: |
||
80 | LCD_printfxy(0,0,"K1:%4i K2:%4i ",PPM_in[1],PPM_in[2]); |
||
81 | LCD_printfxy(0,1,"K3:%4i K4:%4i ",PPM_in[3],PPM_in[4]); |
||
82 | LCD_printfxy(0,2,"K5:%4i K6:%4i ",PPM_in[5],PPM_in[6]); |
||
83 | LCD_printfxy(0,3,"K7:%4i K8:%4i ",PPM_in[7],PPM_in[8]); |
||
84 | break; |
||
85 | case 4: |
||
86 | LCD_printfxy(0,0,"Ni:%4i Ro:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_NICK]],PPM_in[EE_Parameter.Kanalbelegung[K_ROLL]]); |
||
87 | LCD_printfxy(0,1,"Gs:%4i Gi:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_GAS]]+120,PPM_in[EE_Parameter.Kanalbelegung[K_GIER]]); |
||
88 | LCD_printfxy(0,2,"P1:%4i P2:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]]+110,PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]]+110); |
||
89 | LCD_printfxy(0,3,"P3:%4i P4:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]]+110,PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]]+110); |
||
90 | break; |
||
91 | case 5: |
||
92 | LCD_printfxy(0,0,"Gyro - Sensor"); |
||
93 | if(PlatinenVersion == 10) |
||
94 | { |
||
95 | LCD_printfxy(0,1,"Nick %4i (%3i.%i)",AdWertNick - AdNeutralNick/8, AdNeutralNick/8, AdNeutralNick%8); |
||
96 | LCD_printfxy(0,2,"Roll %4i (%3i.%i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/8, AdNeutralRoll%8); |
||
97 | LCD_printfxy(0,3,"Gier %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier); |
||
98 | } |
||
99 | else |
||
100 | if((PlatinenVersion == 11) || (PlatinenVersion == 20)) |
||
101 | { |
||
102 | LCD_printfxy(0,1,"Nick %4i (%3i.%x)",AdWertNick - AdNeutralNick/8, AdNeutralNick/16, (AdNeutralNick%16)/2); |
||
103 | LCD_printfxy(0,2,"Roll %4i (%3i.%x)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/16, (AdNeutralRoll%16)/2); |
||
104 | LCD_printfxy(0,3,"Gier %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2); |
||
105 | } |
||
106 | else |
||
107 | if(PlatinenVersion == 13) |
||
108 | { |
||
109 | LCD_printfxy(0,1,"Nick %4i (%3i)(%3i)",AdWertNick - AdNeutralNick/8, AdNeutralNick/16,AnalogOffsetNick); |
||
110 | LCD_printfxy(0,2,"Roll %4i (%3i)(%3i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/16,AnalogOffsetRoll); |
||
111 | LCD_printfxy(0,3,"Gier %4i (%3i)(%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2,AnalogOffsetGier); |
||
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,"Voltage: %5i",UBat); |
||
122 | LCD_printfxy(0,2,"RC-Level: %5i",SenderOkay); |
||
123 | LCD_printfxy(0,3,"RC-Channels:%4i",Channels-1); |
||
124 | break; |
||
125 | case 8: |
||
126 | LCD_printfxy(0,0,"Kompass "); |
||
127 | LCD_printfxy(0,1,"Richtung: %5i",KompassRichtung); |
||
128 | LCD_printfxy(0,2,"Messwert: %5i",KompassValue); |
||
129 | LCD_printfxy(0,3,"Start: %5i",KompassStartwert); |
||
130 | break; |
||
131 | case 9: |
||
132 | LCD_printfxy(0,0,"Poti1: %3i",Poti1); |
||
133 | LCD_printfxy(0,1,"Poti2: %3i",Poti2); |
||
134 | LCD_printfxy(0,2,"Poti3: %3i",Poti3); |
||
135 | LCD_printfxy(0,3,"Poti4: %3i",Poti4); |
||
136 | break; |
||
137 | case 10: |
||
138 | LCD_printfxy(0,0,"Servo " ); |
||
139 | LCD_printfxy(0,1,"Setpoint %3i",Parameter_ServoNickControl); |
||
140 | LCD_printfxy(0,2,"Stellung: %3i",ServoNickValue); |
||
141 | LCD_printfxy(0,3,"Range:%3i-%3i",EE_Parameter.ServoNickMin,EE_Parameter.ServoNickMax); |
||
142 | break; |
||
143 | case 11: |
||
144 | LCD_printfxy(0,0,"ExternControl " ); |
||
145 | LCD_printfxy(0,1,"Ni:%4i Ro:%4i ",ExternControl.Nick,ExternControl.Roll); |
||
146 | LCD_printfxy(0,2,"Gs:%4i Gi:%4i ",ExternControl.Gas,ExternControl.Gier); |
||
147 | LCD_printfxy(0,3,"Hi:%4i Cf:%4i ",ExternControl.Hight,ExternControl.Config); |
||
148 | break; |
||
149 | case 12: |
||
150 | LCD_printfxy(0,0,"BL-Ctrl Errors " ); |
||
151 | LCD_printfxy(0,1," %3d %3d %3d %3d ",MotorError[0],MotorError[1],MotorError[2],MotorError[3]); |
||
152 | LCD_printfxy(0,2," %3d %3d %3d %3d ",MotorError[4],MotorError[5],MotorError[6],MotorError[7]); |
||
153 | LCD_printfxy(0,3," %3d %3d %3d %3d ",MotorError[8],MotorError[9],MotorError[10],MotorError[11]); |
||
154 | break; |
||
155 | case 13: |
||
156 | LCD_printfxy(0,0,"BL-Ctrl found " ); |
||
157 | LCD_printfxy(0,1," %c %c %c %c ",MotorPresent[0] + '-',MotorPresent[1] + '-',MotorPresent[2] + '-',MotorPresent[3] + '-'); |
||
158 | LCD_printfxy(0,2," %c %c %c %c ",MotorPresent[4] + '-',MotorPresent[5] + '-',MotorPresent[6] + '-',MotorPresent[7] + '-'); |
||
159 | LCD_printfxy(0,3," %c - - -",MotorPresent[8] + '-'); |
||
160 | if(MotorPresent[9]) LCD_printfxy(4,3,"10"); |
||
161 | if(MotorPresent[10]) LCD_printfxy(8,3,"11"); |
||
162 | if(MotorPresent[11]) LCD_printfxy(12,3,"12"); |
||
163 | break; |
||
164 | case 14: |
||
165 | LCD_printfxy(0,0,"Flight-Time " ); |
||
166 | LCD_printfxy(0,1," %5umin",FlugMinuten); |
||
167 | LCD_printfxy(0,2,"Total:%5umin",FlugMinutenGesamt); |
||
168 | LCD_printfxy(13,3,"(reset)"); |
||
169 | if(RemoteKeys & KEY4) |
||
170 | { |
||
171 | FlugMinuten = 0; |
||
172 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES2],FlugMinuten / 256); |
||
173 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES2+1],FlugMinuten % 256); |
||
174 | } |
||
175 | /* if(RemoteKeys & KEY3 && FlugMinuten == 0) |
||
176 | { |
||
177 | FlugMinutenGesamt = 0; |
||
178 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES],FlugMinutenGesamt / 256); |
||
179 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES+1],FlugMinutenGesamt % 256); |
||
180 | } */ |
||
181 | break; |
||
182 | |||
183 | default: MaxMenue = MenuePunkt - 1; |
||
184 | MenuePunkt = 0; |
||
185 | break; |
||
186 | } |
||
187 | RemoteKeys = 0; |
||
188 | } |