udah bisa looo

Dependencies:   mbed

Committer:
Yolandataniaa
Date:
Thu Feb 27 12:40:03 2020 +0000
Revision:
0:aa8e05bc0533
good pid

Who changed what in which revision?

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