joey shelton / LED_Demo

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by Maxim nexpaq

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers nsapi.h Source File

nsapi.h

00001 /* nsapi.h - The network socket API
00002  * Copyright (c) 2015 ARM Limited
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *     http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #ifndef NSAPI_H
00018 #define NSAPI_H
00019 
00020 
00021 // entry point for nsapi types
00022 #include "nsapi_types.h"
00023 
00024 #ifdef __cplusplus
00025 
00026 // entry point for C++ api
00027 #include "network-socket/SocketAddress.h"
00028 #include "network-socket/NetworkStack.h"
00029 
00030 #include "network-socket/NetworkInterface.h"
00031 #include "network-socket/EthInterface.h"
00032 #include "network-socket/WiFiInterface.h"
00033 #include "network-socket/CellularInterface.h"
00034 #include "network-socket/MeshInterface.h"
00035 
00036 #include "network-socket/Socket.h"
00037 #include "network-socket/UDPSocket.h"
00038 #include "network-socket/TCPSocket.h"
00039 #include "network-socket/TCPServer.h"
00040 
00041 #endif
00042 
00043 
00044 #endif