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/all_io.h@20:5de24e4ae1c5, 2019-01-08 (annotated)
- Committer:
- mfwic
- Date:
- Tue Jan 08 22:05:53 2019 +0000
- Revision:
- 20:5de24e4ae1c5
- Parent:
- 1:9f8583ba2431
Corrected BusOut order
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mfwic | 0:44a3005d4f20 | 1 | //------------------------------------------------------------------------------- |
| mfwic | 0:44a3005d4f20 | 2 | // |
| mfwic | 0:44a3005d4f20 | 3 | // Treehouse Designs Inc. |
| mfwic | 0:44a3005d4f20 | 4 | // Colorado Springs, Colorado |
| mfwic | 0:44a3005d4f20 | 5 | // |
| mfwic | 0:44a3005d4f20 | 6 | // Copyright (c) 2016 by Treehouse Designs Inc. |
| mfwic | 0:44a3005d4f20 | 7 | // Copyright (c) 2018 by Agility Power Systems Inc. |
| mfwic | 0:44a3005d4f20 | 8 | // |
| mfwic | 0:44a3005d4f20 | 9 | // This code is the property of Treehouse Designs, Inc. (Treehouse) and |
| mfwic | 0:44a3005d4f20 | 10 | // Agility Power Systems Inc. (Agility) and may not be redistributed |
| mfwic | 0:44a3005d4f20 | 11 | // in any form without prior written permission from |
| mfwic | 0:44a3005d4f20 | 12 | // both copyright holders, Treehouse and Agility. |
| mfwic | 0:44a3005d4f20 | 13 | // |
| mfwic | 0:44a3005d4f20 | 14 | // The above copyright notice and this permission notice shall be included in |
| mfwic | 0:44a3005d4f20 | 15 | // all copies or substantial portions of the Software. |
| mfwic | 0:44a3005d4f20 | 16 | // |
| mfwic | 0:44a3005d4f20 | 17 | // |
| mfwic | 0:44a3005d4f20 | 18 | //------------------------------------------------------------------------------- |
| mfwic | 0:44a3005d4f20 | 19 | // |
| mfwic | 0:44a3005d4f20 | 20 | // REVISION HISTORY: |
| mfwic | 0:44a3005d4f20 | 21 | // |
| mfwic | 0:44a3005d4f20 | 22 | // $Author: $ |
| mfwic | 0:44a3005d4f20 | 23 | // $Rev: $ |
| mfwic | 0:44a3005d4f20 | 24 | // $Date: $ |
| mfwic | 0:44a3005d4f20 | 25 | // $URL: $ |
| mfwic | 0:44a3005d4f20 | 26 | // |
| mfwic | 0:44a3005d4f20 | 27 | //------------------------------------------------------------------------------- |
| mfwic | 0:44a3005d4f20 | 28 | |
| mfwic | 0:44a3005d4f20 | 29 | #ifndef all_io_H |
| mfwic | 0:44a3005d4f20 | 30 | #define all_io_H |
| mfwic | 0:44a3005d4f20 | 31 | |
| mfwic | 0:44a3005d4f20 | 32 | #include "mbed.h" |
| mfwic | 0:44a3005d4f20 | 33 | |
| mfwic | 0:44a3005d4f20 | 34 | // Digital IO |
| mfwic | 1:9f8583ba2431 | 35 | //extern DigitalOut wr_out[13]; |
| mfwic | 1:9f8583ba2431 | 36 | extern BusOut wr_out; |
| mfwic | 1:9f8583ba2431 | 37 | //extern DigitalOut en_out[6]; |
| mfwic | 1:9f8583ba2431 | 38 | extern BusOut en_out; |
| mfwic | 20:5de24e4ae1c5 | 39 | //extern DigitalOut pc14; |
| mfwic | 0:44a3005d4f20 | 40 | extern DigitalIn eport[16]; |
| mfwic | 0:44a3005d4f20 | 41 | extern DigitalOut extchlat; |
| mfwic | 0:44a3005d4f20 | 42 | extern DigitalIn all_on; |
| mfwic | 0:44a3005d4f20 | 43 | |
| mfwic | 0:44a3005d4f20 | 44 | |
| mfwic | 0:44a3005d4f20 | 45 | // Analog IO |
| mfwic | 1:9f8583ba2431 | 46 | extern AnalogIn VIN48; |
| mfwic | 1:9f8583ba2431 | 47 | extern AnalogIn VIN24; |
| mfwic | 1:9f8583ba2431 | 48 | extern AnalogIn VIN12; |
| mfwic | 0:44a3005d4f20 | 49 | |
| mfwic | 1:9f8583ba2431 | 50 | extern AnalogIn IIN48; |
| mfwic | 1:9f8583ba2431 | 51 | extern AnalogIn IIN24; |
| mfwic | 1:9f8583ba2431 | 52 | extern AnalogIn IIN12; |
| mfwic | 1:9f8583ba2431 | 53 | |
| mfwic | 1:9f8583ba2431 | 54 | extern DigitalOut myled; |
| mfwic | 0:44a3005d4f20 | 55 | |
| mfwic | 0:44a3005d4f20 | 56 | |
| mfwic | 0:44a3005d4f20 | 57 | #endif |