2010-09-22 15:10:42 +02:00
|
|
|
/*
|
|
|
|
* LPC 2000 Loader, http://www.pjrc.com/arm/lpc2k_pgm
|
|
|
|
* Copyright (c) 2004, PJRC.COM, LLC, <paul@pjrc.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* If this code fails to build, please provide at least the following
|
|
|
|
* information when requesting (free) technical support.
|
2013-07-29 16:41:43 +02:00
|
|
|
*
|
2010-09-22 15:10:42 +02:00
|
|
|
* 1: Complete copy of all messages during the build.
|
|
|
|
* 2: Output of "gtk-config --version"
|
|
|
|
* 3: Output of "gtk-config --libs"
|
|
|
|
* 4: Output of "gtk-config --cflags"
|
|
|
|
* 5: Output of "uname -a"
|
|
|
|
* 6: Version of GTK installed... eg, type: ls -l /lib/libgtk*
|
|
|
|
* 7: Other info... which linux distribution, version, other software
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include "lpc2k_pgm.h"
|
|
|
|
#include "serial.h"
|
|
|
|
#include "download.h"
|
|
|
|
|
|
|
|
int programming_done = 0;
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
int done_program(int i)
|
|
|
|
{
|
|
|
|
printf("Programming done.\n");
|
|
|
|
programming_done = 1;
|
|
|
|
return 0;
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
void handle_port_input()
|
|
|
|
{
|
|
|
|
unsigned char buf[256];
|
|
|
|
int num;
|
2010-09-22 15:10:42 +02:00
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
num = read_serial_port(buf, sizeof(buf));
|
|
|
|
|
|
|
|
if (num > 0) {
|
|
|
|
download_rx_port(buf, num);
|
|
|
|
}
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
void usage()
|
|
|
|
{
|
2010-09-22 15:10:42 +02:00
|
|
|
printf("usage: lpc2k_pgm <port> <ihex-file>\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2013-07-29 16:41:43 +02:00
|
|
|
if (argc < 3) {
|
|
|
|
usage();
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-09-22 15:10:42 +02:00
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
char *port_name = argv[1];
|
|
|
|
char *file_name = argv[2];
|
2010-09-22 15:10:42 +02:00
|
|
|
|
|
|
|
if (open_serial_port(port_name) < 0) {
|
2013-07-29 16:41:43 +02:00
|
|
|
return (1);
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
if (!download_begin(file_name)) {
|
2010-09-22 15:10:42 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2013-07-29 16:41:43 +02:00
|
|
|
|
|
|
|
while (!programming_done) {
|
|
|
|
handle_port_input();
|
|
|
|
}
|
|
|
|
|
2010-09-22 15:10:42 +02:00
|
|
|
close_serial_port();
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
return 0;
|
2010-09-22 15:10:42 +02:00
|
|
|
}
|
|
|
|
|