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.
MicrobitUltrasound.cpp@1:17a477201275, 2016-08-20 (annotated)
- Committer:
- isaeldiaz@developer.mbed.org
- Date:
- Sat Aug 20 23:09:04 2016 +0200
- Revision:
- 1:17a477201275
- Parent:
- 0:133a9b4128c1
- Child:
- 2:826744569821
integrating updates
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 1 | /* |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 2 | The MIT License (MIT) |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 3 | |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 4 | Copyright (c) 2016 British Broadcasting Corporation. |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 5 | This software is provided by Lancaster University by arrangement with the BBC. |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 6 | |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 7 | Permission is hereby granted, free of charge, to any person obtaining a |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 8 | copy of this software and associated documentation files (the "Software"), |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 9 | to deal in the Software without restriction, including without limitation |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 10 | the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 11 | and/or sell copies of the Software, and to permit persons to whom the |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 12 | Software is furnished to do so, subject to the following conditions: |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 13 | |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 14 | The above copyright notice and this permission notice shall be included in |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 15 | all copies or substantial portions of the Software. |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 16 | |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 20 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 22 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 23 | DEALINGS IN THE SOFTWARE. |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 24 | */ |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 25 | |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 26 | /** |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 27 | * Class definition for MicroBitPin. |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 28 | * |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 29 | * Commonly represents an I/O pin on the edge connector. |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 30 | */ |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 31 | #include "MicroBitPin.h" |
| isaeldiaz@developer.mbed.org | 1:17a477201275 | 32 |