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.
Fork of COG-AD4050_QSL by
millis/millis.h@0:8ca1e814a851, 2018-05-02 (annotated)
- Committer:
- APS_Lab
- Date:
- Wed May 02 09:26:10 2018 +0000
- Revision:
- 0:8ca1e814a851
version1
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| APS_Lab | 0:8ca1e814a851 | 1 | #ifndef MILLIS_H |
| APS_Lab | 0:8ca1e814a851 | 2 | #define MILLIS_H |
| APS_Lab | 0:8ca1e814a851 | 3 | /* |
| APS_Lab | 0:8ca1e814a851 | 4 | millis.h |
| APS_Lab | 0:8ca1e814a851 | 5 | Copyright (c) 2016 Zoltan Hudak <hudakz@inbox.com> |
| APS_Lab | 0:8ca1e814a851 | 6 | All rights reserved. |
| APS_Lab | 0:8ca1e814a851 | 7 | |
| APS_Lab | 0:8ca1e814a851 | 8 | This program is free software: you can redistribute it and/or modify |
| APS_Lab | 0:8ca1e814a851 | 9 | it under the terms of the GNU General Public License as published by |
| APS_Lab | 0:8ca1e814a851 | 10 | the Free Software Foundation, either version 3 of the License, or |
| APS_Lab | 0:8ca1e814a851 | 11 | (at your option) any later version. |
| APS_Lab | 0:8ca1e814a851 | 12 | |
| APS_Lab | 0:8ca1e814a851 | 13 | This program is distributed in the hope that it will be useful, |
| APS_Lab | 0:8ca1e814a851 | 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| APS_Lab | 0:8ca1e814a851 | 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| APS_Lab | 0:8ca1e814a851 | 16 | GNU General Public License for more details. |
| APS_Lab | 0:8ca1e814a851 | 17 | |
| APS_Lab | 0:8ca1e814a851 | 18 | You should have received a copy of the GNU General Public License |
| APS_Lab | 0:8ca1e814a851 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| APS_Lab | 0:8ca1e814a851 | 20 | */ |
| APS_Lab | 0:8ca1e814a851 | 21 | |
| APS_Lab | 0:8ca1e814a851 | 22 | void millisStart(void); |
| APS_Lab | 0:8ca1e814a851 | 23 | void updateMyTicker(void); |
| APS_Lab | 0:8ca1e814a851 | 24 | unsigned long millis(void); |
| APS_Lab | 0:8ca1e814a851 | 25 | |
| APS_Lab | 0:8ca1e814a851 | 26 | #endif |
