altos: Remove unused ao_adc_get from ao_adc_stm.c
[fw/altos] / ao-tools / ao-makebin / ao-makebin.1
1 .\"
2 .\" Copyright © 2013 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 .TH AO-LOAD 1 "ao-makebin" ""
20 .SH NAME
21 ao-makebin \- construct raw binary file or DFU image from collection of ELF files
22 .SH SYNOPSIS
23 .B "ao-makebin"
24 [\--base=\fIbase-address\fP]
25 [\--output=\fIoutput.bin\fP]
26 [\--dfu]
27 [\--verbose]
28 \fIinput.elf ...\fP
29 .SH DESCRIPTION
30 .I ao-makebin
31 reads the specified .elf files and writes out a raw binary flash image
32 .SH OPTIONS
33 .TP
34 \--base=\fIbase-address\fP
35 This specifies the target address for the first byte of the file (default is 0)
36 .TP
37 \--output=\fIoutput.bin\fP
38 This specifies the output file (default is stdout)
39 .TP
40 \--dfu
41 Creates a DFU file (as documented by ST's UM0391 user manual) instead
42 of a raw binary file.
43 .TP
44 \--verbose
45 Dumps some debug information.
46 .SH AUTHOR
47 Keith Packard