This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers EthDev.c Source File

EthDev.c

00001 #include "NyLPC_config.h"
00002 #if NyLPC_MCU==NyLPC_MCU_K64F
00003 
00004 #include "../EthDev.h"
00005 #include "EtherDev_K64F_protected.h"
00006 
00007 
00008 
00009 const struct TiEthernetDevice* getEthernetDevicePnP(void)
00010 {
00011     const struct TiEthernetDevice* ret;
00012     if(EthDev_K64F_getInterface(&ret)){
00013         return ret;
00014     }
00015     return NULL;
00016 }
00017 
00018 
00019 #endif
00020 
00021