Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
inc/command.h@8:d3d7dca419b3, 2018-12-06 (annotated)
- Committer:
- mfwic
- Date:
- Thu Dec 06 16:22:11 2018 +0000
- Revision:
- 8:d3d7dca419b3
- Child:
- 12:fd1fd1857628
Added CAL and UNCAL commands.; Added correction factors for voltage and current inputs.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mfwic | 8:d3d7dca419b3 | 1 | //------------------------------------------------------------------------------- |
mfwic | 8:d3d7dca419b3 | 2 | // |
mfwic | 8:d3d7dca419b3 | 3 | // Treehouse Designs Inc. |
mfwic | 8:d3d7dca419b3 | 4 | // Colorado Springs, Colorado |
mfwic | 8:d3d7dca419b3 | 5 | // |
mfwic | 8:d3d7dca419b3 | 6 | // Copyright (c) 2016 by Treehouse Designs Inc. |
mfwic | 8:d3d7dca419b3 | 7 | // Copyright (c) 2018 by Agility Power Systems Inc. |
mfwic | 8:d3d7dca419b3 | 8 | // |
mfwic | 8:d3d7dca419b3 | 9 | // This code is the property of Treehouse Designs, Inc. (Treehouse) and |
mfwic | 8:d3d7dca419b3 | 10 | // Agility Power Systems Inc. (Agility) and may not be redistributed |
mfwic | 8:d3d7dca419b3 | 11 | // in any form without prior written permission from |
mfwic | 8:d3d7dca419b3 | 12 | // both copyright holders, Treehouse and Agility. |
mfwic | 8:d3d7dca419b3 | 13 | // |
mfwic | 8:d3d7dca419b3 | 14 | // The above copyright notice and this permission notice shall be included in |
mfwic | 8:d3d7dca419b3 | 15 | // all copies or substantial portions of the Software. |
mfwic | 8:d3d7dca419b3 | 16 | // |
mfwic | 8:d3d7dca419b3 | 17 | // |
mfwic | 8:d3d7dca419b3 | 18 | //------------------------------------------------------------------------------- |
mfwic | 8:d3d7dca419b3 | 19 | // |
mfwic | 8:d3d7dca419b3 | 20 | // REVISION HISTORY: |
mfwic | 8:d3d7dca419b3 | 21 | // |
mfwic | 8:d3d7dca419b3 | 22 | // $Author: $ |
mfwic | 8:d3d7dca419b3 | 23 | // $Rev: $ |
mfwic | 8:d3d7dca419b3 | 24 | // $Date: $ |
mfwic | 8:d3d7dca419b3 | 25 | // $URL: $ |
mfwic | 8:d3d7dca419b3 | 26 | // |
mfwic | 8:d3d7dca419b3 | 27 | //------------------------------------------------------------------------------- |
mfwic | 8:d3d7dca419b3 | 28 | |
mfwic | 8:d3d7dca419b3 | 29 | #ifndef command_H |
mfwic | 8:d3d7dca419b3 | 30 | #define command_H |
mfwic | 8:d3d7dca419b3 | 31 | |
mfwic | 8:d3d7dca419b3 | 32 | #include "mbed.h" |
mfwic | 8:d3d7dca419b3 | 33 | |
mfwic | 8:d3d7dca419b3 | 34 | extern bool raw; |
mfwic | 8:d3d7dca419b3 | 35 | |
mfwic | 8:d3d7dca419b3 | 36 | void processCommand(void); |
mfwic | 8:d3d7dca419b3 | 37 | bool waitCommand(void); |
mfwic | 8:d3d7dca419b3 | 38 | |
mfwic | 8:d3d7dca419b3 | 39 | #endif |