altos: Remove unused ao_adc_get from ao_adc_stm.c
[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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
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.
13  *
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.
17  */
18
19 #include "sky_flash.h"
20 #include <stdio.h>
21 #include <string.h>
22
23 static const char loader_start[] = "$LOADER DOWNLOAD";
24
25 int
26 skytraq_send_srec(int fd, const char *filename)
27 {
28         FILE    *file;
29         int     ret;
30         char    line[1024];
31
32         file = fopen(filename, "r");
33         if (!file) {
34                 perror(filename);
35                 return -1;
36         }
37
38         ret = skytraq_cmd_wait(fd, loader_start, strlen(loader_start) + 1, "OK", 1000);
39         if (ret)
40                 return ret;
41
42         for (;;) {
43                 char    *s;
44                 int     len;
45
46                 s = fgets(line, sizeof(line), file);
47                 if (!s)
48                         break;
49                 len = strlen(s);
50                 if (len < 3)            /* Terminated with \r\n */
51                         break;
52                 s[len-2] = '\n';        /* Smash \r */
53                 s[len-1] = '\0';        /* Smash \n */
54                 skytraq_cmd_nowait(fd, s, len);
55         }
56         fclose(file);
57
58         ret = skytraq_waitstatus(fd, "END", 10000);
59         skytraq_dbg_newline();
60         return ret;
61 }