2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
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.
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.
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.
28 static const struct option options[] = {
29 { .name = "tty", .has_arg = 1, .val = 'T' },
30 { .name = "device", .has_arg = 1, .val = 'D' },
34 static void usage(char *program)
36 fprintf(stderr, "usage: %s [--tty <tty-name>] [--device <device-name>\n", program);
41 main (int argc, char **argv)
45 uint8_t bytes[2 * 32 * (2 + 8)];
53 while ((c = getopt_long(argc, argv, "T:D:", options, NULL)) != -1) {
67 tty = cc_usbdevs_find_by_arg(device, "TeleMetrum");
69 tty = getenv("ALTOS_TTY");
72 cc = cc_usb_open(tty);
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);
79 for (i = 0; i < 32 * 2; i++) {
81 addr = block * 256 + i * 8;
82 printf ("%06x", addr);
83 for (j = 0; j < 8; j++) {
84 printf (" %02x", b[j+2]);