This is the final version of Mini Gateway for Automation and Security desgined for Renesas GR Peach Design Contest

Dependencies:   GR-PEACH_video GraphicsFramework HTTPServer R_BSP mbed-rpc mbed-rtos Socket lwip-eth lwip-sys lwip FATFileSystem

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

Committer:
vipinranka
Date:
Wed Jan 11 11:41:30 2017 +0000
Revision:
12:9a20164dcc47
This is the final version MGAS Project for Renesas GR Peach Design Contest

Who changed what in which revision?

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