altos: Add configuration parameter for maximum flight log size
[fw/altos] / src / ao_config.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 __xdata struct ao_config ao_config;
21 __xdata uint8_t ao_config_loaded;
22 __xdata uint8_t ao_config_dirty;
23 __xdata uint8_t ao_config_mutex;
24
25 #define AO_CONFIG_DEFAULT_MAIN_DEPLOY   250
26 #define AO_CONFIG_DEFAULT_RADIO_CHANNEL 0
27 #define AO_CONFIG_DEFAULT_CALLSIGN      "N0CALL"
28 #define AO_CONFIG_DEFAULT_ACCEL_ZERO_G  16000
29 #define AO_CONFIG_DEFAULT_APOGEE_DELAY  0
30 #define AO_CONFIG_DEFAULT_FLIGHT_LOG_MAX        ((uint32_t) 256 * (uint32_t) 1024)
31
32 #if HAS_EEPROM
33 static void
34 _ao_config_put(void)
35 {
36         ao_storage_setup();
37         ao_storage_erase(ao_storage_config);
38         ao_storage_write(ao_storage_config, &ao_config, sizeof (ao_config));
39         ao_log_write_erase(0);
40         ao_storage_flush();
41 }
42
43 void
44 ao_config_put(void)
45 {
46         ao_mutex_get(&ao_config_mutex);
47         _ao_config_put();
48         ao_mutex_put(&ao_config_mutex);
49 }
50 #endif
51
52 static void
53 _ao_config_get(void)
54 {
55         if (ao_config_loaded)
56                 return;
57 #if HAS_EEPROM
58         ao_storage_setup();
59         ao_storage_read(ao_storage_config, &ao_config, sizeof (ao_config));
60 #endif
61         if (ao_config.major != AO_CONFIG_MAJOR) {
62                 ao_config.major = AO_CONFIG_MAJOR;
63                 ao_config.minor = AO_CONFIG_MINOR;
64                 ao_config.main_deploy = AO_CONFIG_DEFAULT_MAIN_DEPLOY;
65                 ao_config.radio_channel = AO_CONFIG_DEFAULT_RADIO_CHANNEL;
66                 ao_config.accel_plus_g = 0;
67                 ao_config.accel_minus_g = 0;
68                 memset(&ao_config.callsign, '\0', sizeof (ao_config.callsign));
69                 memcpy(&ao_config.callsign, AO_CONFIG_DEFAULT_CALLSIGN,
70                        sizeof(AO_CONFIG_DEFAULT_CALLSIGN) - 1);
71                 ao_config.apogee_delay = AO_CONFIG_DEFAULT_APOGEE_DELAY;
72                 ao_config.radio_cal = ao_radio_cal;
73                 ao_config_dirty = 1;
74         }
75         if (ao_config.minor < AO_CONFIG_MINOR) {
76                 /* Fixups for minor version 1 */
77                 if (ao_config.minor < 1)
78                         ao_config.apogee_delay = AO_CONFIG_DEFAULT_APOGEE_DELAY;
79                 /* Fixups for minor version 2 */
80                 if (ao_config.minor < 2) {
81                         ao_config.accel_plus_g = 0;
82                         ao_config.accel_minus_g = 0;
83                 }
84                 /* Fixups for minor version 3 */
85                 if (ao_config.minor < 3)
86                         ao_config.radio_cal = ao_radio_cal;
87                 /* Fixups for minor version 4 */
88                 if (ao_config.minor < 4)
89                         ao_config.flight_log_max = AO_CONFIG_DEFAULT_FLIGHT_LOG_MAX;
90                 ao_config.minor = AO_CONFIG_MINOR;
91                 ao_config_dirty = 1;
92         }
93         ao_config_loaded = 1;
94 }
95
96 void
97 ao_config_get(void)
98 {
99         ao_mutex_get(&ao_config_mutex);
100         _ao_config_get();
101         ao_mutex_put(&ao_config_mutex);
102 }
103
104 void
105 ao_config_callsign_show(void)
106 {
107         printf ("Callsign: \"%s\"\n", ao_config.callsign);
108 }
109
110 void
111 ao_config_callsign_set(void) __reentrant
112 {
113         uint8_t c;
114         char callsign[AO_MAX_CALLSIGN + 1];
115
116         ao_cmd_white();
117         c = 0;
118         while (ao_cmd_lex_c != '\n') {
119                 if (c < AO_MAX_CALLSIGN)
120                         callsign[c++] = ao_cmd_lex_c;
121                 else
122                         ao_cmd_status = ao_cmd_lex_error;
123                 ao_cmd_lex();
124         }
125         if (ao_cmd_status != ao_cmd_success)
126                 return;
127         ao_mutex_get(&ao_config_mutex);
128         _ao_config_get();
129         while (c < AO_MAX_CALLSIGN + 1)
130                 callsign[c++] = '\0';
131         memcpy(&ao_config.callsign, &callsign,
132                AO_MAX_CALLSIGN + 1);
133         ao_config_dirty = 1;
134         ao_mutex_put(&ao_config_mutex);
135         ao_config_callsign_show();
136 }
137
138 void
139 ao_config_radio_channel_show(void) __reentrant
140 {
141         uint32_t        freq = 434550L + ao_config.radio_channel * 100L;
142         uint16_t        mhz = freq / 1000L;
143         uint16_t        khz = freq % 1000L;
144
145         printf("Radio channel: %d (%d.%03dMHz)\n",
146                ao_config.radio_channel, mhz, khz);
147 }
148
149 void
150 ao_config_radio_channel_set(void) __reentrant
151 {
152         ao_cmd_decimal();
153         if (ao_cmd_status != ao_cmd_success)
154                 return;
155         ao_mutex_get(&ao_config_mutex);
156         _ao_config_get();
157         ao_config.radio_channel = ao_cmd_lex_i;
158         ao_config_dirty = 1;
159         ao_mutex_put(&ao_config_mutex);
160         ao_config_radio_channel_show();
161         ao_radio_recv_abort();
162 }
163
164 #if HAS_ADC
165
166 void
167 ao_config_main_deploy_show(void) __reentrant
168 {
169         printf("Main deploy: %d meters (%d feet)\n",
170                ao_config.main_deploy,
171                (int16_t) ((int32_t) ao_config.main_deploy * 328 / 100));
172 }
173
174 void
175 ao_config_main_deploy_set(void) __reentrant
176 {
177         ao_cmd_decimal();
178         if (ao_cmd_status != ao_cmd_success)
179                 return;
180         ao_mutex_get(&ao_config_mutex);
181         _ao_config_get();
182         ao_config.main_deploy = ao_cmd_lex_i;
183         ao_config_dirty = 1;
184         ao_mutex_put(&ao_config_mutex);
185         ao_config_main_deploy_show();
186 }
187
188 void
189 ao_config_accel_calibrate_show(void) __reentrant
190 {
191         printf("Accel cal +1g: %d -1g: %d\n",
192                ao_config.accel_plus_g, ao_config.accel_minus_g);
193 }
194
195 #define ACCEL_CALIBRATE_SAMPLES 1024
196 #define ACCEL_CALIBRATE_SHIFT   10
197
198 static int16_t
199 ao_config_accel_calibrate_auto(char *orientation) __reentrant
200 {
201         uint16_t        i;
202         int32_t         accel_total;
203         uint8_t         cal_adc_ring;
204
205         printf("Orient %s and press a key...", orientation);
206         flush();
207         (void) getchar();
208         puts("\r\n"); flush();
209         puts("Calibrating..."); flush();
210         i = ACCEL_CALIBRATE_SAMPLES;
211         accel_total = 0;
212         cal_adc_ring = ao_adc_head;
213         while (i) {
214                 ao_sleep(&ao_adc_ring);
215                 while (i && cal_adc_ring != ao_adc_head) {
216                         accel_total += (int32_t) ao_adc_ring[cal_adc_ring].accel;
217                         cal_adc_ring = ao_adc_ring_next(cal_adc_ring);
218                         i--;
219                 }
220         }
221         return accel_total >> ACCEL_CALIBRATE_SHIFT;
222 }
223
224 void
225 ao_config_accel_calibrate_set(void) __reentrant
226 {
227         int16_t up, down;
228         ao_cmd_decimal();
229         if (ao_cmd_status != ao_cmd_success)
230                 return;
231         if (ao_cmd_lex_i == 0) {
232                 up = ao_config_accel_calibrate_auto("antenna up");
233                 down = ao_config_accel_calibrate_auto("antenna down");
234         } else {
235                 up = ao_cmd_lex_i;
236                 ao_cmd_decimal();
237                 if (ao_cmd_status != ao_cmd_success)
238                         return;
239                 down = ao_cmd_lex_i;
240         }
241         if (up >= down) {
242                 printf("Invalid accel calibration: antenna up (%d) should be less than antenna down (%d)\n",
243                        up, down);
244                 return;
245         }
246         ao_mutex_get(&ao_config_mutex);
247         _ao_config_get();
248         ao_config.accel_plus_g = up;
249         ao_config.accel_minus_g = down;
250         ao_config_dirty = 1;
251         ao_mutex_put(&ao_config_mutex);
252         ao_config_accel_calibrate_show();
253 }
254
255 void
256 ao_config_apogee_delay_show(void) __reentrant
257 {
258         printf("Apogee delay: %d seconds\n",
259                ao_config.apogee_delay);
260 }
261
262 void
263 ao_config_apogee_delay_set(void) __reentrant
264 {
265         ao_cmd_decimal();
266         if (ao_cmd_status != ao_cmd_success)
267                 return;
268         ao_mutex_get(&ao_config_mutex);
269         _ao_config_get();
270         ao_config.apogee_delay = ao_cmd_lex_i;
271         ao_config_dirty = 1;
272         ao_mutex_put(&ao_config_mutex);
273         ao_config_apogee_delay_show();
274 }
275
276 #endif /* HAS_ADC */
277
278 void
279 ao_config_radio_cal_show(void) __reentrant
280 {
281         printf("Radio cal: %ld\n", ao_config.radio_cal);
282 }
283
284 void
285 ao_config_radio_cal_set(void) __reentrant
286 {
287         ao_cmd_decimal();
288         if (ao_cmd_status != ao_cmd_success)
289                 return;
290         ao_mutex_get(&ao_config_mutex);
291         _ao_config_get();
292         ao_config.radio_cal = ao_cmd_lex_u32;
293         ao_config_dirty = 1;
294         ao_mutex_put(&ao_config_mutex);
295         ao_config_radio_cal_show();
296 }
297
298 #if HAS_EEPROM
299 void
300 ao_config_log_show(void) __reentrant
301 {
302         printf("Max flight log: %d kB\n", (int16_t) (ao_config.flight_log_max >> 10));
303 }
304
305 void
306 ao_config_log_set(void) __reentrant
307 {
308         ao_cmd_decimal();
309         if (ao_cmd_status != ao_cmd_success)
310                 return;
311         ao_mutex_get(&ao_config_mutex);
312         _ao_config_get();
313         if (ao_storage_block > 1024 && (ao_cmd_lex_u32 & ((ao_storage_block >> 10) - 1)))
314                 printf("Flight log size must be multiple of %ld\n", ao_storage_block >> 10);
315         ao_config.flight_log_max = ao_cmd_lex_u32 << 10;
316         ao_config_dirty = 1;
317         ao_mutex_put(&ao_config_mutex);
318         ao_config_log_show();
319 }
320 #endif /* HAS_EEPROM */
321
322 struct ao_config_var {
323         char            cmd;
324         void            (*set)(void) __reentrant;
325         void            (*show)(void) __reentrant;
326         const char      *help;
327 };
328
329 static void
330 ao_config_help(void) __reentrant;
331
332 static void
333 ao_config_show(void) __reentrant;
334
335 static void
336 ao_config_write(void) __reentrant;
337
338 __code struct ao_config_var ao_config_vars[] = {
339 #if HAS_ADC
340         { 'm',  ao_config_main_deploy_set,      ao_config_main_deploy_show,
341                 "m <meters>  Set height above launch for main deploy (in meters)" },
342         { 'd',  ao_config_apogee_delay_set,     ao_config_apogee_delay_show,
343                 "d <delay>   Set apogee igniter delay (in seconds)" },
344 #endif /* HAS_ADC */
345         { 'r',  ao_config_radio_channel_set,    ao_config_radio_channel_show,
346                 "r <channel> Set radio channel (freq = 434.550 + channel * .1)" },
347         { 'c',  ao_config_callsign_set,         ao_config_callsign_show,
348                 "c <call>    Set callsign broadcast in each packet (8 char max)" },
349 #if HAS_ADC
350         { 'a',  ao_config_accel_calibrate_set,  ao_config_accel_calibrate_show,
351                 "a <+g> <-g> Set accelerometer calibration (0 for auto)" },
352 #endif /* HAS_ADC */
353         { 'f',  ao_config_radio_cal_set,        ao_config_radio_cal_show,
354                 "f <cal>     Set radio calibration value (cal = rf/(xtal/2^16))" },
355 #if HAS_EEPROM
356         { 'l',  ao_config_log_set,              ao_config_log_show,
357                 "l <size>    Set flight log size in kB" },
358 #endif
359         { 's',  ao_config_show,                 ao_config_show,
360                 "s           Show current config values" },
361 #if HAS_EEPROM
362         { 'w',  ao_config_write,                ao_config_write,
363                 "w           Write current values to eeprom" },
364 #endif
365         { '?',  ao_config_help,                 ao_config_help,
366                 "?           Show available config variables" },
367         { 0,    ao_config_help, ao_config_help,
368                 NULL },
369 };
370
371 void
372 ao_config_set(void)
373 {
374         char    c;
375         uint8_t cmd;
376         void (*__xdata func)(void) __reentrant;
377
378         ao_cmd_white();
379         c = ao_cmd_lex_c;
380         ao_cmd_lex();
381         func = 0;
382         for (cmd = 0; ao_config_vars[cmd].cmd != '\0'; cmd++)
383                 if (ao_config_vars[cmd].cmd == c) {
384                         func = ao_config_vars[cmd].set;
385                         break;
386                 }
387         if (func)
388                 (*func)();
389         else
390                 ao_cmd_status = ao_cmd_syntax_error;
391 }
392
393 static void
394 ao_config_help(void) __reentrant
395 {
396         uint8_t cmd;
397         for (cmd = 0; ao_config_vars[cmd].cmd != '\0'; cmd++)
398                 puts (ao_config_vars[cmd].help);
399 }
400
401 static void
402 ao_config_show(void) __reentrant
403 {
404         uint8_t cmd;
405         printf("Config version: %d.%d\n",
406                ao_config.major, ao_config.minor);
407         for (cmd = 0; ao_config_vars[cmd].cmd != '\0'; cmd++)
408                 if (ao_config_vars[cmd].show != ao_config_vars[cmd].set)
409                         (*ao_config_vars[cmd].show)();
410 }
411
412 #if HAS_EEPROM
413 static void
414 ao_config_write(void) __reentrant
415 {
416         uint8_t saved = 0;
417         ao_mutex_get(&ao_config_mutex);
418         if (ao_config_dirty) {
419                 _ao_config_put();
420                 ao_config_dirty = 0;
421                 saved = 1;
422         }
423         ao_mutex_put(&ao_config_mutex);
424         if (saved)
425                 puts("Saved");
426         else
427                 puts("Nothing to save");
428 }
429 #endif
430
431 __code struct ao_cmds ao_config_cmds[] = {
432         { 'c',  ao_config_set,  "c <var> <value>                    Set config variable (? for help, s to show)" },
433         { '\0', ao_config_set, NULL },
434 };
435
436 void
437 ao_config_init(void)
438 {
439         ao_cmd_register(&ao_config_cmds[0]);
440 }