Merge branch 'micropeak-1.1'
[fw/altos] / ao-tools / ao-sky-flash / sky_srec.c
1 /*
2  * Copyright © 2012 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; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "sky_flash.h"
19 #include <stdio.h>
20 #include <string.h>
21
22 static const char loader_start[] = "$LOADER DOWNLOAD";
23
24 int
25 skytraq_send_srec(int fd, const char *filename)
26 {
27         FILE    *file;
28         int     ret;
29         char    line[1024];
30
31         file = fopen(filename, "r");
32         if (!file) {
33                 perror(filename);
34                 return -1;
35         }
36
37         ret = skytraq_cmd_wait(fd, loader_start, strlen(loader_start) + 1, "OK", 1000);
38         if (ret)
39                 return ret;
40
41         for (;;) {
42                 char    *s;
43                 int     len;
44
45                 s = fgets(line, sizeof(line), file);
46                 if (!s)
47                         break;
48                 len = strlen(s);
49                 if (len < 3)            /* Terminated with \r\n */
50                         break;
51                 s[len-2] = '\n';        /* Smash \r */
52                 s[len-1] = '\0';        /* Smash \n */
53                 skytraq_cmd_nowait(fd, s, len);
54         }
55         fclose(file);
56
57         ret = skytraq_waitstatus(fd, "END", 10000);
58         skytraq_dbg_newline();
59         return ret;
60 }