cassyarduino cassyarduino / UIPEthernet
Committer:
cassyarduino
Date:
Wed Feb 22 14:35:30 2017 +0100
Revision:
36:689bcc358067
Parent:
35:f9f3a91fe4d4
Changes

Who changed what in which revision?

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