Mbed_demos ALU

Dependencies:   Socket lwip-eth lwip-sys lwip

Fork of EthernetInterface by mbed official

Committer:
pnysten
Date:
Tue Oct 27 07:11:26 2015 +0000
Revision:
50:882c47b4b7a0
Parent:
37:926eb6517318
1/0/8

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 37:926eb6517318 1 /* EthernetInterface.h */
mbed_official 37:926eb6517318 2 /* Copyright (C) 2012 mbed.org, MIT License
mbed_official 37:926eb6517318 3 *
mbed_official 37:926eb6517318 4 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
mbed_official 37:926eb6517318 5 * and associated documentation files (the "Software"), to deal in the Software without restriction,
mbed_official 37:926eb6517318 6 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
mbed_official 37:926eb6517318 7 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
mbed_official 37:926eb6517318 8 * furnished to do so, subject to the following conditions:
mbed_official 37:926eb6517318 9 *
mbed_official 37:926eb6517318 10 * The above copyright notice and this permission notice shall be included in all copies or
mbed_official 37:926eb6517318 11 * substantial portions of the Software.
mbed_official 37:926eb6517318 12 *
mbed_official 37:926eb6517318 13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
mbed_official 37:926eb6517318 14 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
mbed_official 37:926eb6517318 15 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
mbed_official 37:926eb6517318 16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbed_official 37:926eb6517318 17 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
mbed_official 37:926eb6517318 18 */
mbed_official 37:926eb6517318 19
mbed_official 37:926eb6517318 20 // Architecture specific Ethernet interface
mbed_official 37:926eb6517318 21 // Must be implemented by each target
mbed_official 37:926eb6517318 22
mbed_official 37:926eb6517318 23 #ifndef ETHARCH_H_
mbed_official 37:926eb6517318 24 #define ETHARCH_H_
mbed_official 37:926eb6517318 25
mbed_official 37:926eb6517318 26 #include "lwip/netif.h"
mbed_official 37:926eb6517318 27
mbed_official 37:926eb6517318 28 #ifdef __cplusplus
mbed_official 37:926eb6517318 29 extern "C" {
mbed_official 37:926eb6517318 30 #endif
mbed_official 37:926eb6517318 31
mbed_official 37:926eb6517318 32 void eth_arch_enable_interrupts(void);
mbed_official 37:926eb6517318 33 void eth_arch_disable_interrupts(void);
mbed_official 37:926eb6517318 34 err_t eth_arch_enetif_init(struct netif *netif);
mbed_official 37:926eb6517318 35
mbed_official 37:926eb6517318 36 #ifdef __cplusplus
mbed_official 37:926eb6517318 37 }
mbed_official 37:926eb6517318 38 #endif
mbed_official 37:926eb6517318 39
mbed_official 37:926eb6517318 40 #endif // #ifndef ETHARCHINTERFACE_H_
mbed_official 37:926eb6517318 41