altosui: Separate out log file choosing dialog to share with CSV generator
[fw/altos] / ao-tools / ao-eeprom / ao-eeprom.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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <getopt.h>
23 #include "cc-usb.h"
24 #include "cc.h"
25
26 #define NUM_BLOCK       512
27
28 static const struct option options[] = {
29         { .name = "tty", .has_arg = 1, .val = 'T' },
30         { .name = "device", .has_arg = 1, .val = 'D' },
31         { 0, 0, 0, 0},
32 };
33
34 static void usage(char *program)
35 {
36         fprintf(stderr, "usage: %s [--tty <tty-name>] [--device <device-name>\n", program);
37         exit(1);
38 }
39
40 int
41 main (int argc, char **argv)
42 {
43         struct cc_usb   *cc;
44         int             block;
45         uint8_t         bytes[2 * 32 * (2 + 8)];
46         uint8_t         *b;
47         int             i, j;
48         uint32_t        addr;
49         char            *tty = NULL;
50         char            *device = NULL;
51         int             c;
52
53         while ((c = getopt_long(argc, argv, "T:D:", options, NULL)) != -1) {
54                 switch (c) {
55                 case 'T':
56                         tty = optarg;
57                         break;
58                 case 'D':
59                         device = optarg;
60                         break;
61                 default:
62                         usage(argv[0]);
63                         break;
64                 }
65         }
66         if (!tty)
67                 tty = cc_usbdevs_find_by_arg(device, "TeleMetrum");
68         if (!tty)
69                 tty = getenv("ALTOS_TTY");
70         if (!tty)
71                 tty="/dev/ttyACM0";
72         cc = cc_usb_open(tty);
73         if (!cc)
74                 exit(1);
75         for (block = 0; block < NUM_BLOCK; block += 2) {
76                 cc_queue_read(cc, bytes, sizeof (bytes));
77                 cc_usb_printf(cc, "e %x\ne %x\n", block, block + 1);
78                 cc_usb_sync(cc);
79                 for (i = 0; i < 32 * 2; i++) {
80                         b = bytes + (i * 10);
81                         addr = block * 256 + i * 8;
82                         printf ("%06x", addr);
83                         for (j = 0; j < 8; j++) {
84                                 printf (" %02x", b[j+2]);
85                         }
86                         printf ("\n");
87                 }
88         }
89         cc_usb_close(cc);
90         exit (0);
91 }