SmartMesh QSL for STM32F4 version

Fork of COG-AD4050_QSL by APS Lab

Committer:
APS_Lab
Date:
Thu Jul 12 09:19:12 2018 +0000
Revision:
1:b909b8399252
Parent:
0:8ca1e814a851
SmartMesh for STM32F4 version

Who changed what in which revision?

UserRevisionLine numberNew 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