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