1
2 /*
3 * Copyright (c) 2010-2011 Adrian Chadd, Xenion Pty Ltd.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <sys/types.h>
32 #include <err.h>
33
34 #include "eeprom.h"
35 #include "v4k.h"
36
37 void
usage(char * argv[])38 usage(char *argv[])
39 {
40 printf("Usage: %s <eeprom dump file>\n", argv[0]);
41 printf("\n");
42 printf(" The eeprom dump file is a text hexdump of an EEPROM.\n");
43 printf(" The lines must be formatted as follows:\n");
44 printf(" 0xAAAA: 0xDD 0xDD 0xDD 0xDD 0xDD 0xDD 0xDD 0xDD\n");
45 printf(" where each line must have exactly eight data bytes.\n");
46 exit(127);
47 }
48
49 int
main(int argc,char * argv[])50 main(int argc, char *argv[])
51 {
52 uint16_t *eep = NULL;
53 eep = calloc(4096, sizeof(int16_t));
54
55 if (argc < 2)
56 usage(argv);
57
58 load_eeprom_dump(argv[1], eep);
59
60 eeprom_v4k_base_print(eep);
61 eeprom_v4k_custdata_print(eep);
62 printf("\n2.4ghz:\n");
63 eeprom_v4k_modal_print(eep);
64 printf("\n");
65
66 eeprom_v4k_calfreqpiers_print(eep);
67 printf("\n");
68
69 eeprom_v4k_print_targets(eep);
70 printf("\n");
71
72 eeprom_v4k_ctl_print(eep);
73 printf("\n");
74
75 eeprom_v4k_print_edges(eep);
76 printf("\n");
77
78 eeprom_v4k_print_other(eep);
79 printf("\n");
80
81 free(eep);
82 exit(0);
83 }
84