Rename tools to ao-<foo>
[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 "cc-usb.h"
22
23 #define NUM_BLOCK       512
24
25 int
26 main (int argc, char **argv)
27 {
28         struct cc_usb   *cc;
29         int             block;
30         uint8_t         bytes[32 * (2 + 8)];
31         uint8_t         *b;
32         int             i, j;
33         uint32_t        addr;
34         char            *tty;
35
36         tty = getenv("CCDBG_TTY");
37         cc = cc_usb_open(tty);
38         for (block = 0; block < NUM_BLOCK; block++) {
39                 cc_queue_read(cc, bytes, sizeof (bytes));
40                 cc_usb_printf(cc, "e %x\n", block);
41                 cc_usb_sync(cc);
42                 for (i = 0; i < 32; i++) {
43                         b = bytes + (i * 10);
44                         addr = block * 256 + i * 8;
45                         printf ("%06x", addr);
46                         for (j = 0; j < 8; j++) {
47                                 printf (" %02x", b[j+2]);
48                         }
49                         printf ("\n");
50                 }
51         }
52         cc_usb_close(cc);
53         exit (0);
54 }