mbed-os

Dependents:   cobaLCDJoyMotor_Thread odometry_omni_3roda_v3 odometry_omni_3roda_v1 odometry_omni_3roda_v2 ... more

Committer:
be_bryan
Date:
Mon Dec 11 17:54:04 2017 +0000
Revision:
0:b74591d5ab33
motor ++

Who changed what in which revision?

UserRevisionLine numberNew contents of line
be_bryan 0:b74591d5ab33 1
be_bryan 0:b74591d5ab33 2 /** \addtogroup netsocket */
be_bryan 0:b74591d5ab33 3 /** @{*/
be_bryan 0:b74591d5ab33 4 /* MeshInterface
be_bryan 0:b74591d5ab33 5 * Copyright (c) 2015 ARM Limited
be_bryan 0:b74591d5ab33 6 *
be_bryan 0:b74591d5ab33 7 * Licensed under the Apache License, Version 2.0 (the "License");
be_bryan 0:b74591d5ab33 8 * you may not use this file except in compliance with the License.
be_bryan 0:b74591d5ab33 9 * You may obtain a copy of the License at
be_bryan 0:b74591d5ab33 10 *
be_bryan 0:b74591d5ab33 11 * http://www.apache.org/licenses/LICENSE-2.0
be_bryan 0:b74591d5ab33 12 *
be_bryan 0:b74591d5ab33 13 * Unless required by applicable law or agreed to in writing, software
be_bryan 0:b74591d5ab33 14 * distributed under the License is distributed on an "AS IS" BASIS,
be_bryan 0:b74591d5ab33 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
be_bryan 0:b74591d5ab33 16 * See the License for the specific language governing permissions and
be_bryan 0:b74591d5ab33 17 * limitations under the License.
be_bryan 0:b74591d5ab33 18 */
be_bryan 0:b74591d5ab33 19
be_bryan 0:b74591d5ab33 20 #ifndef MESH_INTERFACE_H
be_bryan 0:b74591d5ab33 21 #define MESH_INTERFACE_H
be_bryan 0:b74591d5ab33 22
be_bryan 0:b74591d5ab33 23 #include "netsocket/NetworkInterface.h"
be_bryan 0:b74591d5ab33 24
be_bryan 0:b74591d5ab33 25
be_bryan 0:b74591d5ab33 26 /** MeshInterface class
be_bryan 0:b74591d5ab33 27 *
be_bryan 0:b74591d5ab33 28 * Common interface that is shared between mesh hardware
be_bryan 0:b74591d5ab33 29 */
be_bryan 0:b74591d5ab33 30 class MeshInterface : public NetworkInterface
be_bryan 0:b74591d5ab33 31 {
be_bryan 0:b74591d5ab33 32 };
be_bryan 0:b74591d5ab33 33
be_bryan 0:b74591d5ab33 34
be_bryan 0:b74591d5ab33 35 #endif
be_bryan 0:b74591d5ab33 36
be_bryan 0:b74591d5ab33 37 /** @}*/