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 MiMicNetIf.cpp Source File

MiMicNetIf.cpp

00001 
00002 ////////////////////////////////////////////////////////////////////////////////
00003 // Httpd.h
00004 ////////////////////////////////////////////////////////////////////////////////
00005 
00006 #include "MiMicNetIf.h"
00007 #include "mbed.h"
00008 
00009 namespace MiMic
00010 {
00011     MiMicNetIf::MiMicNetIf(){
00012     }
00013     MiMicNetIf::~MiMicNetIf()
00014     {
00015 //      NyLPC_cMiMicIpNetIf_finalize();
00016     }
00017     const NyLPC_TiNetInterface_Interface* MiMicNetIf::getInterface()
00018     {
00019         if(this->_inst==NULL){
00020             this->_inst=NyLPC_cMiMicIpNetIf_getNetInterface();
00021         }
00022         return this->_inst;
00023     }
00024 
00025 }
00026