1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/* -*- c++ -*-
This is Picprog, Microchip PIC programmer software for the serial port device.
Copyright © 1997,2002,2003,2004,2006 Jaakko Hyvätti
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
The author may be contacted at:
Email: Jaakko.Hyvatti@iki.fi
URL: http://www.iki.fi/hyvatti/
Phone: +358 40 5011222
Please send any suggestions, bug reports, success stories etc. to the
Email address above.
*/
#include <iostream>
#include <sysexits.h>
#include <unistd.h>
#include <getopt.h>
#include <string.h>
#include "hexfile.h"
#include "program.h"
using namespace std;
program prog;
char short_opts [] = "d:p:i:o:c:qh?";
int
main (int argc, char **argv)
{
int opt_warranty = 0;
int opt_copying = 0;
int opt_quiet = 0;
int opt_usage = 0;
int opt_format = hexfile::unknown;
char *opt_port = (char *)"/dev/ttyS0";
char *opt_input = NULL;
char *opt_output = NULL;
char *opt_cc = NULL;
int opt_skip = 0;
int opt_erase = 0;
int opt_burn = 0;
int opt_calibration = 0;
int opt_nordtsc = 1;
int opt_slow = 0;
// Auto ident (-1) is the default, or if that fails, first device (0)
int opt_device = -1;
struct option long_opts[] = {
{"quiet", no_argument, NULL, 'q'},
{"warranty", no_argument, &opt_warranty, 1},
{"copying", no_argument, &opt_copying, 1},
{"help", no_argument, NULL, 'h'},
{"device", required_argument, NULL, 'd'},
{"pic-serial-port", required_argument, NULL, 'p'},
{"input-hexfile", required_argument, NULL, 'i'},
{"output-hexfile", required_argument, NULL, 'o'},
{"ihx32", no_argument, &opt_format, hexfile::ihx32},
{"ihx16", no_argument, &opt_format, hexfile::ihx16},
{"ihx8m", no_argument, &opt_format, hexfile::ihx8m},
{"cc-hexfile", required_argument, NULL, 'c'},
{"skip-ones", no_argument, &opt_skip, 1},
{"erase", no_argument, &opt_erase, 1},
{"burn", no_argument, &opt_burn, 1},
{"force-calibration", no_argument, &opt_calibration, 1},
{"nordtsc", no_argument, &opt_nordtsc, 1},
{"rdtsc", no_argument, &opt_nordtsc, 0},
{"slow", no_argument, &opt_slow, 1},
{0, 0, 0, 0}
};
int optc;
prog.init (argv);
while (0 <= (optc = getopt_long (argc, argv, short_opts, long_opts, NULL)))
switch (optc) {
case 0:
break;
case 'd':
if (!strcmp (optarg, "auto"))
opt_device = -1;
else if (-1 == (opt_device = hexfile::find_device (optarg)))
opt_usage = 1;
break;
case 'p':
opt_port = optarg;
break;
case 'i':
opt_input = optarg;
break;
case 'o':
opt_output = optarg;
break;
case 'c':
opt_cc = optarg;
break;
case 'q':
opt_quiet = 1;
break;
default: // -? -h --help unknown flag
opt_usage = 1;
}
if (!opt_quiet || opt_warranty || opt_copying || opt_usage)
// Locale charset should be respected here.
cerr << "Picprog version 1.8.3, Copyright © 2006 Jaakko Hyvätti <Jaakko.Hyvatti@iki.fi>\n"
"Picprog comes with ABSOLUTELY NO WARRANTY; for details\n"
"type `" << prog.name << " --warranty'. This is free software,\n"
"and you are welcome to redistribute it under certain conditions;\n"
"type `" << prog.name << " --copying' for details.\n\n";
if (opt_copying)
prog.copying ();
if (opt_warranty)
prog.warranty ();
if (opt_usage) {
cerr << "Full documentation is at "
"<URL:http://www.iki.fi/hyvatti/pic/picprog.html>" << endl
<< "The author may be contacted at:" << endl << endl
<< "Email: Jaakko.Hyvatti@iki.fi" << endl
<< "URL: http://www.iki.fi/hyvatti/" << endl << endl
<< "Supported devices:" << endl;
hexfile::print_devices ();
cerr << endl;
prog.usage (long_opts, short_opts);
}
if (opt_warranty || opt_copying || opt_usage)
return EX_OK;
if (!opt_input && !opt_output && !opt_erase) {
cerr << "Please specify either input or output hexfile or --erase option."
<< endl;
prog.usage (long_opts, short_opts);
}
if (opt_cc && !opt_input) {
cerr << "Carbon copy does not make sense without input file." << endl;
prog.usage (long_opts, short_opts);
}
// if both input and output files are specified, first program the device
// and then read it.
if (opt_input || opt_erase) {
hexfile mem;
int retval;
if (EX_OK != (retval = mem.setdevice (opt_port, opt_device, opt_nordtsc, opt_slow)))
return retval;
if (opt_input && EX_OK != (retval = mem.load (opt_input)))
return retval;
if (opt_burn) {
if (EX_OK != (retval = mem.program (opt_port, opt_erase, opt_calibration, opt_nordtsc, opt_slow)))
return retval;
} else
cout << "No --burn option specified, device not programmed.\n";
if (opt_input && opt_cc)
if (EX_OK != (retval = mem.save (opt_cc,
hexfile::formats (opt_format),
opt_skip)))
return retval;
}
if (opt_output) {
hexfile mem;
int retval;
if (EX_OK != (retval = mem.setdevice (opt_port, opt_device, opt_nordtsc, opt_slow)))
return retval;
if (EX_OK != (retval = mem.read (opt_port, opt_nordtsc, opt_slow)))
return retval;
if (EX_OK != (retval = mem.save (opt_output,
hexfile::formats (opt_format),
opt_skip)))
return retval;
}
return EX_OK;
}
|