UIPEthernet library for Arduino IDE, Eclipse with arduino plugin and MBED/SMeshStudio (AVR,STM32F,ESP8266,Intel ARC32,Nordic nRF51,Teensy boards,Realtek Ameba(RTL8195A,RTL8710)), ENC28j60 network chip. Compatible with Wiznet W5100 Ethernet library API. Compiled and tested on Nucleo-F302R8. Master repository is: https://github.com/UIPEthernet/UIPEthernet/

Committer:
cassyarduino
Date:
Tue Jan 23 15:08:43 2018 +0100
Revision:
39:deeb00b81cc9
Parent:
35:f9f3a91fe4d4
Release: 2.0.4

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