millis code

Committer:
SomeRandomBloke
Date:
Thu Sep 24 19:10:54 2020 +0000
Revision:
0:b6a22ecd3b4f
Frist push

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SomeRandomBloke 0:b6a22ecd3b4f 1 #ifndef MILLIS_H
SomeRandomBloke 0:b6a22ecd3b4f 2 #define MILLIS_H
SomeRandomBloke 0:b6a22ecd3b4f 3 /*
SomeRandomBloke 0:b6a22ecd3b4f 4 millis.h
SomeRandomBloke 0:b6a22ecd3b4f 5 Copyright (c) 2016 Zoltan Hudak <hudakz@inbox.com>
SomeRandomBloke 0:b6a22ecd3b4f 6 All rights reserved.
SomeRandomBloke 0:b6a22ecd3b4f 7
SomeRandomBloke 0:b6a22ecd3b4f 8 This program is free software: you can redistribute it and/or modify
SomeRandomBloke 0:b6a22ecd3b4f 9 it under the terms of the GNU General Public License as published by
SomeRandomBloke 0:b6a22ecd3b4f 10 the Free Software Foundation, either version 3 of the License, or
SomeRandomBloke 0:b6a22ecd3b4f 11 (at your option) any later version.
SomeRandomBloke 0:b6a22ecd3b4f 12
SomeRandomBloke 0:b6a22ecd3b4f 13 This program is distributed in the hope that it will be useful,
SomeRandomBloke 0:b6a22ecd3b4f 14 but WITHOUT ANY WARRANTY; without even the implied warranty of
SomeRandomBloke 0:b6a22ecd3b4f 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
SomeRandomBloke 0:b6a22ecd3b4f 16 GNU General Public License for more details.
SomeRandomBloke 0:b6a22ecd3b4f 17
SomeRandomBloke 0:b6a22ecd3b4f 18 You should have received a copy of the GNU General Public License
SomeRandomBloke 0:b6a22ecd3b4f 19 along with this program. If not, see <http://www.gnu.org/licenses/>.
SomeRandomBloke 0:b6a22ecd3b4f 20 */
SomeRandomBloke 0:b6a22ecd3b4f 21
SomeRandomBloke 0:b6a22ecd3b4f 22 void millis_Handler(void);
SomeRandomBloke 0:b6a22ecd3b4f 23 void millisStart(void);
SomeRandomBloke 0:b6a22ecd3b4f 24 void millisStop(void);
SomeRandomBloke 0:b6a22ecd3b4f 25 unsigned long millis(void);
SomeRandomBloke 0:b6a22ecd3b4f 26
SomeRandomBloke 0:b6a22ecd3b4f 27 #endif