Rev 1378 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1378 | Rev 1550 | ||
---|---|---|---|
Line 5... | Line 5... | ||
5 | // + porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed |
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 |
6 | // + see the File "License.txt" for further Informations |
7 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
7 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
8 | #include "main.h" |
8 | #include "main.h" |
Line 9... | Line -... | ||
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}; |
9 | |
13 | char DisplayBuff[80] = "Hallo Welt"; |
10 | char DisplayBuff[80] = "Hallo Welt"; |
Line 14... | Line 11... | ||
14 | unsigned char DispPtr = 0; |
11 | unsigned char DispPtr = 0; |
15 | 12 | ||
16 | unsigned char MaxMenue = 14; |
13 | unsigned char MaxMenue = 16; |
Line 17... | Line 14... | ||
17 | unsigned char MenuePunkt = 0; |
14 | unsigned char MenuePunkt = 0; |
18 | unsigned char RemoteKeys = 0; |
15 | unsigned char RemoteKeys = 0; |
Line 27... | Line 24... | ||
27 | { |
24 | { |
28 | unsigned char i; |
25 | unsigned char i; |
29 | for(i=0;i<80;i++) DisplayBuff[i] = ' '; |
26 | for(i=0;i<80;i++) DisplayBuff[i] = ' '; |
30 | } |
27 | } |
Line -... | Line 28... | ||
- | 28 | ||
- | 29 | void Menu_Putchar(char c) |
|
- | 30 | { |
|
- | 31 | DisplayBuff[DispPtr++] = c; |
|
- | 32 | } |
|
31 | 33 | ||
32 | void Menu(void) |
34 | void Menu(void) |
33 | { |
- | |
34 | - | ||
35 | if(MenuePunkt > MaxMenue) MenuePunkt = MaxMenue; |
- | |
36 | 35 | { |
|
37 | if(RemoteKeys & KEY1) { if(MenuePunkt) MenuePunkt--; else MenuePunkt = MaxMenue;} |
36 | if(RemoteKeys & KEY1) { if(MenuePunkt) MenuePunkt--; else MenuePunkt = MaxMenue;} |
38 | if(RemoteKeys & KEY2) { if(MenuePunkt == MaxMenue) MenuePunkt = 0; else MenuePunkt++;} |
37 | if(RemoteKeys & KEY2) { if(MenuePunkt == MaxMenue) MenuePunkt = 0; else MenuePunkt++;} |
39 | if((RemoteKeys & KEY1) && (RemoteKeys & KEY2)) MenuePunkt = 0; |
38 | if((RemoteKeys & KEY1) && (RemoteKeys & KEY2)) MenuePunkt = 0; |
40 | LcdClear(); |
39 | LcdClear(); |
Line 48... | Line 47... | ||
48 | LCD_printfxy(0,1,"HW:V%d.%d SW:%d.%d%c",PlatinenVersion/10,PlatinenVersion%10, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH +'a'); |
47 | LCD_printfxy(0,1,"HW:V%d.%d SW:%d.%d%c",PlatinenVersion/10,PlatinenVersion%10, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH +'a'); |
49 | LCD_printfxy(0,2,"Setting:%d %s",GetActiveParamSetNumber(),Mixer.Name); |
48 | LCD_printfxy(0,2,"Setting:%d %s",GetActiveParamSetNumber(),Mixer.Name); |
50 | if(I2CTimeout < 6) LCD_printfxy(0,3,"I2C ERROR!!!") |
49 | if(I2CTimeout < 6) LCD_printfxy(0,3,"I2C ERROR!!!") |
51 | else |
50 | else |
52 | if(MissingMotor) LCD_printfxy(0,3,"Missing BL-Ctrl:%d!!",MissingMotor) |
51 | if(MissingMotor) LCD_printfxy(0,3,"Missing BL-Ctrl:%d!!",MissingMotor) |
53 | else LCD_printfxy(0,3,"(c) Holger Buss"); |
- | |
54 | // if(RemoteTasten & KEY3) TestInt--; |
- | |
55 | // if(RemoteTasten & KEY4) TestInt++; |
- | |
56 | break; |
52 | break; |
57 | case 1: |
53 | case 1: |
58 | if(EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) |
54 | if(EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) |
59 | { |
55 | { |
60 | LCD_printfxy(0,0,"Hoehe: %5i",(int)(HoehenWert/5)); |
56 | LCD_printfxy(0,0,"Height: %5i",(int)(HoehenWert/5)); |
61 | LCD_printfxy(0,1,"SollHoehe: %5i",(int)(SollHoehe/5)); |
57 | LCD_printfxy(0,1,"Setpoint:%5i",(int)(SollHoehe/5)); |
62 | LCD_printfxy(0,2,"Luftdruck: %5i",MessLuftdruck); |
58 | LCD_printfxy(0,2,"Pressure:%5i",MessLuftdruck); |
63 | LCD_printfxy(0,3,"Off : %5i",OCR0A); |
59 | LCD_printfxy(0,3,"Offset: %5i",OCR0A); |
64 | } |
60 | } |
65 | else |
61 | else |
66 | { |
62 | { |
- | 63 | LCD_printfxy(0,0,"Height control"); |
|
67 | LCD_printfxy(0,1,"Keine "); |
64 | LCD_printfxy(0,1,"DISABLED"); |
68 | LCD_printfxy(0,2,"Höhenregelung"); |
65 | LCD_printfxy(0,2,"Height control"); |
- | 66 | LCD_printfxy(0,3,"DISABLED"); |
|
69 | } |
67 | } |
Line 70... | Line 68... | ||
70 | 68 | ||
71 | break; |
69 | break; |
72 | case 2: |
70 | case 2: |
73 | LCD_printfxy(0,0,"akt. Lage"); |
71 | LCD_printfxy(0,0,"act. bearing"); |
74 | LCD_printfxy(0,1,"Nick: %5i",IntegralNick/1024); |
72 | LCD_printfxy(0,1,"Nick: %5i",IntegralNick/1024); |
75 | LCD_printfxy(0,2,"Roll: %5i",IntegralRoll/1024); |
73 | LCD_printfxy(0,2,"Roll: %5i",IntegralRoll/1024); |
76 | LCD_printfxy(0,3,"Kompass: %5i",KompassValue); |
74 | LCD_printfxy(0,3,"Compass: %5i",KompassValue); |
77 | break; |
75 | break; |
78 | case 3: |
76 | case 3: |
79 | LCD_printfxy(0,0,"K1:%4i K2:%4i ",PPM_in[1],PPM_in[2]); |
77 | 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]); |
78 | LCD_printfxy(0,1,"K3:%4i K4:%4i ",PPM_in[3],PPM_in[4]); |
Line 89... | Line 87... | ||
89 | break; |
87 | break; |
90 | case 5: |
88 | case 5: |
91 | LCD_printfxy(0,0,"Gyro - Sensor"); |
89 | LCD_printfxy(0,0,"Gyro - Sensor"); |
92 | if(PlatinenVersion == 10) |
90 | if(PlatinenVersion == 10) |
93 | { |
91 | { |
94 | LCD_printfxy(0,1,"Nick %4i (%3i.%i)",AdWertNick - AdNeutralNick/8, AdNeutralNick/8, AdNeutralNick%8); |
92 | LCD_printfxy(0,1,"Nick%4i (%3i.%i)",AdWertNick - AdNeutralNick/8, AdNeutralNick/8, AdNeutralNick%8); |
95 | LCD_printfxy(0,2,"Roll %4i (%3i.%i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/8, AdNeutralRoll%8); |
93 | LCD_printfxy(0,2,"Roll%4i (%3i.%i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/8, AdNeutralRoll%8); |
96 | LCD_printfxy(0,3,"Gier %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier); |
94 | LCD_printfxy(0,3,"Gier%4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier); |
97 | } |
95 | } |
98 | else |
96 | else |
99 | if((PlatinenVersion == 11) || (PlatinenVersion == 20)) |
97 | if((PlatinenVersion == 11) || (PlatinenVersion == 20)) |
100 | { |
98 | { |
101 | LCD_printfxy(0,1,"Nick %4i (%3i.%x)",AdWertNick - AdNeutralNick/8, AdNeutralNick/16, (AdNeutralNick%16)/2); |
99 | LCD_printfxy(0,1,"Nick %4i (%3i.%x)",AdWertNick - AdNeutralNick/8, AdNeutralNick/16, (AdNeutralNick%16)/2); |
102 | LCD_printfxy(0,2,"Roll %4i (%3i.%x)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/16, (AdNeutralRoll%16)/2); |
100 | LCD_printfxy(0,2,"Roll %4i (%3i.%x)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/16, (AdNeutralRoll%16)/2); |
103 | LCD_printfxy(0,3,"Gier %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2); |
101 | LCD_printfxy(0,3,"Yaw %4i (%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2); |
104 | } |
102 | } |
105 | else |
103 | else |
106 | if(PlatinenVersion == 13) |
104 | if(PlatinenVersion == 13) |
107 | { |
105 | { |
108 | LCD_printfxy(0,1,"Nick %4i (%3i)(%3i)",AdWertNick - AdNeutralNick/8, AdNeutralNick/16,AnalogOffsetNick); |
106 | LCD_printfxy(0,1,"Nick %4i (%3i)(%3i)",AdWertNick - AdNeutralNick/8, AdNeutralNick/16,AnalogOffsetNick); |
109 | LCD_printfxy(0,2,"Roll %4i (%3i)(%3i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/16,AnalogOffsetRoll); |
107 | LCD_printfxy(0,2,"Roll %4i (%3i)(%3i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll/16,AnalogOffsetRoll); |
110 | LCD_printfxy(0,3,"Gier %4i (%3i)(%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2,AnalogOffsetGier); |
108 | LCD_printfxy(0,3,"Yaw %4i (%3i)(%3i)",AdNeutralGier - AdWertGier, AdNeutralGier/2,AnalogOffsetGier); |
111 | } |
109 | } |
112 | break; |
110 | break; |
113 | case 6: |
111 | case 6: |
114 | LCD_printfxy(0,0,"ACC - Sensor"); |
112 | LCD_printfxy(0,0,"ACC - Sensor"); |
115 | LCD_printfxy(0,1,"Nick %4i (%3i)",AdWertAccNick,NeutralAccX); |
113 | LCD_printfxy(0,1,"Nick %4i (%3i)",AdWertAccNick,NeutralAccX); |
116 | LCD_printfxy(0,2,"Roll %4i (%3i)",AdWertAccRoll,NeutralAccY); |
114 | LCD_printfxy(0,2,"Roll %4i (%3i)",AdWertAccRoll,NeutralAccY); |
117 | LCD_printfxy(0,3,"Hoch %4i (%3i)",Mittelwert_AccHoch/*accumulate_AccHoch / messanzahl_AccHoch*/,(int)NeutralAccZ); |
115 | LCD_printfxy(0,3,"Z %4i (%3i)",Mittelwert_AccHoch/*accumulate_AccHoch / messanzahl_AccHoch*/,(int)NeutralAccZ); |
118 | break; |
116 | break; |
119 | case 7: |
117 | case 7: |
120 | LCD_printfxy(0,1,"Voltage: %5i",UBat); |
118 | LCD_printfxy(0,0,"Voltage: %3i.%1iV",UBat/10, UBat%10); |
- | 119 | LCD_printfxy(0,1,"Current: %3i.%1iA",Capacity.ActualCurrent/10, Capacity.ActualCurrent%10); |
|
121 | LCD_printfxy(0,2,"RC-Level: %5i",SenderOkay); |
120 | LCD_printfxy(0,2,"Power: %4iW",Capacity.ActualPower); |
122 | LCD_printfxy(0,3,"RC-Channels:%4i",Channels-1); |
121 | LCD_printfxy(0,3,"Discharge: %5imAh", Capacity.UsedCapacity); |
123 | break; |
122 | break; |
124 | case 8: |
123 | case 8: |
125 | LCD_printfxy(0,0,"Kompass "); |
124 | LCD_printfxy(0,0,"Receiver"); |
126 | LCD_printfxy(0,1,"Richtung: %5i",KompassRichtung); |
125 | LCD_printfxy(0,1,"RC-RSSI: %4i", PPM_in[0]); |
127 | LCD_printfxy(0,2,"Messwert: %5i",KompassValue); |
126 | LCD_printfxy(0,2,"RC-Quality: %4i", SenderOkay); |
128 | LCD_printfxy(0,3,"Start: %5i",KompassStartwert); |
127 | LCD_printfxy(0,3,"RC-Channels:%4i", Channels-1); |
129 | break; |
128 | break; |
130 | case 9: |
129 | case 9: |
131 | LCD_printfxy(0,0,"Poti1: %3i",Poti1); |
130 | LCD_printfxy(0,0,"Compass"); |
132 | LCD_printfxy(0,1,"Poti2: %3i",Poti2); |
131 | LCD_printfxy(0,1,"Heading: %5i",KompassRichtung); |
133 | LCD_printfxy(0,2,"Poti3: %3i",Poti3); |
132 | LCD_printfxy(0,2,"Value: %5i",KompassValue); |
134 | LCD_printfxy(0,3,"Poti4: %3i",Poti4); |
133 | LCD_printfxy(0,3,"Start: %5i",KompassStartwert); |
135 | break; |
134 | break; |
136 | case 10: |
135 | case 10: |
- | 136 | LCD_printfxy(0,0,"Poti1: %3i",Poti[0]); |
|
- | 137 | LCD_printfxy(0,1,"Poti2: %3i",Poti[1]); |
|
- | 138 | LCD_printfxy(0,2,"Poti3: %3i",Poti[2]); |
|
- | 139 | LCD_printfxy(0,3,"Poti4: %3i",Poti[3]); |
|
- | 140 | break; |
|
- | 141 | case 11: |
|
- | 142 | LCD_printfxy(0,0,"Poti5: %3i",Poti[4]); |
|
- | 143 | LCD_printfxy(0,1,"Poti6: %3i",Poti[5]); |
|
- | 144 | LCD_printfxy(0,2,"Poti7: %3i",Poti[6]); |
|
- | 145 | LCD_printfxy(0,3,"Poti8: %3i",Poti[7]); |
|
- | 146 | break; |
|
- | 147 | case 12: |
|
137 | LCD_printfxy(0,0,"Servo " ); |
148 | LCD_printfxy(0,0,"Servo " ); |
138 | LCD_printfxy(0,1,"Setpoint %3i",Parameter_ServoNickControl); |
149 | LCD_printfxy(0,1,"Setpoint %3i",Parameter_ServoNickControl); |
139 | LCD_printfxy(0,2,"Stellung: %3i",ServoNickValue); |
150 | LCD_printfxy(0,2,"Position: %3i",ServoNickValue); |
140 | LCD_printfxy(0,3,"Range:%3i-%3i",EE_Parameter.ServoNickMin,EE_Parameter.ServoNickMax); |
151 | LCD_printfxy(0,3,"Range:%3i-%3i",EE_Parameter.ServoNickMin,EE_Parameter.ServoNickMax); |
141 | break; |
152 | break; |
142 | case 11: |
153 | case 13: |
143 | LCD_printfxy(0,0,"ExternControl " ); |
154 | LCD_printfxy(0,0,"ExternControl " ); |
144 | LCD_printfxy(0,1,"Ni:%4i Ro:%4i ",ExternControl.Nick,ExternControl.Roll); |
155 | 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); |
156 | 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); |
157 | LCD_printfxy(0,3,"Hi:%4i Cf:%4i ",ExternControl.Hight,ExternControl.Config); |
147 | break; |
158 | break; |
148 | case 12: |
159 | case 14: |
149 | LCD_printfxy(0,0,"BL-Ctrl Errors " ); |
160 | LCD_printfxy(0,0,"BL-Ctrl Errors " ); |
150 | LCD_printfxy(0,1," %3d %3d %3d %3d ",MotorError[0],MotorError[1],MotorError[2],MotorError[3]); |
161 | LCD_printfxy(0,1,"%3d %3d %3d %3d ",Motor[0].State & MOTOR_STATE_ERROR_MASK,Motor[1].State & MOTOR_STATE_ERROR_MASK,Motor[2].State & MOTOR_STATE_ERROR_MASK,Motor[3].State & MOTOR_STATE_ERROR_MASK); |
151 | LCD_printfxy(0,2," %3d %3d %3d %3d ",MotorError[4],MotorError[5],MotorError[6],MotorError[7]); |
162 | LCD_printfxy(0,2,"%3d %3d %3d %3d ",Motor[4].State & MOTOR_STATE_ERROR_MASK,Motor[5].State & MOTOR_STATE_ERROR_MASK,Motor[6].State & MOTOR_STATE_ERROR_MASK,Motor[7].State & MOTOR_STATE_ERROR_MASK); |
152 | LCD_printfxy(0,3," %3d %3d %3d %3d ",MotorError[8],MotorError[9],MotorError[10],MotorError[11]); |
163 | LCD_printfxy(0,3,"%3d %3d %3d %3d ",Motor[8].State & MOTOR_STATE_ERROR_MASK,Motor[9].State & MOTOR_STATE_ERROR_MASK,Motor[10].State & MOTOR_STATE_ERROR_MASK,Motor[11].State & MOTOR_STATE_ERROR_MASK); |
153 | break; |
164 | break; |
154 | case 13: |
165 | case 15: |
155 | LCD_printfxy(0,0,"BL-Ctrl found " ); |
166 | LCD_printfxy(0,0,"BL-Ctrl found " ); |
156 | LCD_printfxy(0,1," %c %c %c %c ",MotorPresent[0] + '-',MotorPresent[1] + '-',MotorPresent[2] + '-',MotorPresent[3] + '-'); |
167 | LCD_printfxy(0,1," %c %c %c %c ",'-' + 4 * (Motor[0].State>>7),'-' + 5 * (Motor[1].State>>7),'-' + 6 * (Motor[2].State>>7),'-' + 7 * (Motor[3].State>>7)); |
157 | LCD_printfxy(0,2," %c %c %c %c ",MotorPresent[4] + '-',MotorPresent[5] + '-',MotorPresent[6] + '-',MotorPresent[7] + '-'); |
168 | LCD_printfxy(0,2," %c %c %c %c ",'-' + 8 * (Motor[4].State>>7),'-' + 9 * (Motor[5].State>>7),'-' + 10 * (Motor[6].State>>7),'-' + 11 * (Motor[7].State>>7)); |
158 | LCD_printfxy(0,3," %c - - -",MotorPresent[8] + '-'); |
169 | LCD_printfxy(0,3," %c - - - ",'-' + 12 * (Motor[8].State>>7)); |
159 | if(MotorPresent[9]) LCD_printfxy(4,3,"10"); |
170 | if(Motor[9].State>>7) LCD_printfxy(4,3,"10"); |
160 | if(MotorPresent[10]) LCD_printfxy(8,3,"11"); |
171 | if(Motor[10].State>>7) LCD_printfxy(8,3,"11"); |
161 | if(MotorPresent[11]) LCD_printfxy(12,3,"12"); |
172 | if(Motor[11].State>>7) LCD_printfxy(12,3,"12"); |
162 | break; |
173 | break; |
163 | case 14: |
174 | case 16: |
164 | LCD_printfxy(0,0,"Flight-Time " ); |
175 | LCD_printfxy(0,0,"Flight-Time " ); |
165 | LCD_printfxy(0,1," %5umin",FlugMinuten); |
176 | LCD_printfxy(0,1,"Total:%5umin",FlugMinutenGesamt); |
166 | LCD_printfxy(0,2,"Total:%5umin",FlugMinutenGesamt); |
177 | LCD_printfxy(0,2,"Act: %5umin",FlugMinuten); |
167 | LCD_printfxy(13,3,"(reset)"); |
178 | LCD_printfxy(13,3,"(reset)"); |
168 | if(RemoteKeys & KEY4) |
179 | if(RemoteKeys & KEY4) |
169 | { |
180 | { |
170 | FlugMinuten = 0; |
181 | FlugMinuten = 0; |
171 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES2],FlugMinuten / 256); |
182 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES2],FlugMinuten / 256); |
172 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES2+1],FlugMinuten % 256); |
183 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES2+1],FlugMinuten % 256); |
173 | } |
184 | } |
174 | /* if(RemoteKeys & KEY3 && FlugMinuten == 0) |
- | |
175 | { |
185 | break; |
176 | FlugMinutenGesamt = 0; |
- | |
177 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES],FlugMinutenGesamt / 256); |
- | |
178 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_MINUTES+1],FlugMinutenGesamt % 256); |
- | |
179 | } */ |
- | |
180 | break; |
186 | default: |
181 | - | ||
182 | default: MaxMenue = MenuePunkt - 1; |
187 | if(MenuePunkt == MaxMenue) MaxMenue--; |
183 | MenuePunkt = 0; |
188 | MenuePunkt = 0; |
184 | break; |
189 | break; |
185 | } |
190 | } |
186 | RemoteKeys = 0; |
191 | RemoteKeys = 0; |
187 | } |
192 | } |