6dcbbf7242e2df334b77f554d7a2b76fbd5e3dec
[fw/altos] / ao-tools / ao-sky-flash / sky_flash.h
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 /* sky_serial.c */
20
21 extern int      skytraq_open_time;
22 extern int      skytraq_verbose;
23
24 int
25 skytraq_open(const char *path);
26
27 int
28 skytraq_setspeed(int fd, int baud);
29
30 int
31 skytraq_setcomm(int fd, int baudrate);
32
33 int
34 skytraq_write(int fd, const char *data, int len);
35
36 int
37 skytraq_waitchar(int fd, int timeout);
38
39 int
40 skytraq_waitstatus(int fd, const char *status, int timeout);
41
42 void
43 skytraq_flush(int fd);
44
45 int
46 skytraq_cmd_wait(int fd, const char *message, int len, const char *status, int timeout);
47
48 int
49 skytraq_cmd_nowait(int fd, const char *message, int len);
50
51 /* sky_debug.c */
52
53 void
54 skytraq_dbg_printf(int input, const char *fmt, ...);
55
56 void
57 skytraq_dbg_buf(int input, const char *buf, int len);
58
59 void
60 skytraq_dbg_char(int input, char c);
61
62 /* sky_srec.c */
63 int
64 skytraq_send_srec(int fd, const char *file);
65
66 /* sky_bin.c */
67 int
68 skytraq_send_bin(int fd, const char *filename);