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 millis by
millis.h@0:736e6cc31bcd, 2014-10-31 (annotated)
- Committer:
- lisper
- Date:
- Fri Oct 31 08:06:55 2014 +0000
- Revision:
- 0:736e6cc31bcd
- Child:
- 1:7ba60599f9c4
add millis
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
lisper | 0:736e6cc31bcd | 1 | /******************************************************************************* |
lisper | 0:736e6cc31bcd | 2 | * This file is part of the millis library. * |
lisper | 0:736e6cc31bcd | 3 | * * |
lisper | 0:736e6cc31bcd | 4 | * millis is free software: you can redistribute it and/or * |
lisper | 0:736e6cc31bcd | 5 | * modify it under the terms of the GNU General Public License as * |
lisper | 0:736e6cc31bcd | 6 | * published by the Free Software Foundation, either version 3 of * |
lisper | 0:736e6cc31bcd | 7 | * the License, or any later version. * |
lisper | 0:736e6cc31bcd | 8 | * * |
lisper | 0:736e6cc31bcd | 9 | * millis is distributed in the hope that it will be useful, * |
lisper | 0:736e6cc31bcd | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
lisper | 0:736e6cc31bcd | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
lisper | 0:736e6cc31bcd | 12 | * GNU Lesser General Public License for more details. * |
lisper | 0:736e6cc31bcd | 13 | * * |
lisper | 0:736e6cc31bcd | 14 | * millis is distributed in the hope that it will be useful, * |
lisper | 0:736e6cc31bcd | 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
lisper | 0:736e6cc31bcd | 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
lisper | 0:736e6cc31bcd | 17 | * GNU Lesser General Public License for more details. * |
lisper | 0:736e6cc31bcd | 18 | * * |
lisper | 0:736e6cc31bcd | 19 | * You should have received a copy of the GNU Lesser General Public * |
lisper | 0:736e6cc31bcd | 20 | * License along with millis. If not, see * |
lisper | 0:736e6cc31bcd | 21 | * <http://www.gnu.org/licenses/>. * |
lisper | 0:736e6cc31bcd | 22 | ******************************************************************************/ |
lisper | 0:736e6cc31bcd | 23 | |
lisper | 0:736e6cc31bcd | 24 | /* |
lisper | 0:736e6cc31bcd | 25 | * Copyright: DFRobot |
lisper | 0:736e6cc31bcd | 26 | * name: millis |
lisper | 0:736e6cc31bcd | 27 | * version: 1.0 |
lisper | 0:736e6cc31bcd | 28 | * Author: lisper (lisper.li@dfrobot.com) |
lisper | 0:736e6cc31bcd | 29 | * Date: 2014-10-30 |
lisper | 0:736e6cc31bcd | 30 | * Description: millis library for mbed |
lisper | 0:736e6cc31bcd | 31 | */ |
lisper | 0:736e6cc31bcd | 32 | |
lisper | 0:736e6cc31bcd | 33 | #include "mbed.h" |
lisper | 0:736e6cc31bcd | 34 | |
lisper | 0:736e6cc31bcd | 35 | void millisTicker (); |
lisper | 0:736e6cc31bcd | 36 | |
lisper | 0:736e6cc31bcd | 37 | uint32_t millis (); |
lisper | 0:736e6cc31bcd | 38 | |
lisper | 0:736e6cc31bcd | 39 | void startMillis (); |
lisper | 0:736e6cc31bcd | 40 | |
lisper | 0:736e6cc31bcd | 41 | void stopMillis (); |