table of contents
other versions
- wheezy 0.8-5
| ARD-PARSE-BOARDS(1) | General Commands Manual | ARD-PARSE-BOARDS(1) |
NAME¶
ard-parse-boards - Read data from the Arduino boards.txt fileUSAGE¶
Dump all the data in the file:$ ard-parse-boards --dump
$ ard-parse-boards --boards
$ ard-parse-boards --find uno
$ ard-parse-boards --find duemil 328
$ ard-parse-boards atmega328
$ ard-parse-boards atmega328 build.f_cpu
DESCRIPTION¶
The Arduino software package ships with a boards.txt file which tells the Arduino IDE details about particular hardware. So when the user says he's got a shiny new Arduino Uno, boards.txt knows that it has a 16MHz ATmega328 on it. It would be nice to access these data from the command line too.OPTIONS¶
- --boards_txt=[file]
- Specify the full path to the boards.txt file.
- --dump
- Dump the complete database in YAML format.
- --boards
- Print a list of the tag and name of every board in the
file.
- --find [query] <query> ...
- Find matching data. Strictly, return a list of values which
match all of the query terms, treating each term as a case-insensitive
regexp.
For example:
--find 328
List data containing 328 (anywhere in the value).
--find due
List data containing 'due' (e.g. duemilanove).
--find 328 due
List data containing both 328 and due.
BUGS AND LIMITATIONS¶
There are no known bugs in this application.AUTHOR¶
Martin Oldfield, ex-atelier@mjo.tcLICENSE AND COPYRIGHT¶
Copyright (c) 2011, Martin Oldfield. All rights reserved.| MAY 2012 |