mbed-os
Fork of mbed-os by
features/nanostack/FEATURE_NANOSTACK/mbed-mesh-api/source/CallbackHandler.cpp@0:f269e3021894, 2016-10-23 (annotated)
- Committer:
- elessair
- Date:
- Sun Oct 23 15:10:02 2016 +0000
- Revision:
- 0:f269e3021894
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
elessair | 0:f269e3021894 | 1 | /* |
elessair | 0:f269e3021894 | 2 | * Copyright (c) 2015 ARM Limited. All rights reserved. |
elessair | 0:f269e3021894 | 3 | * SPDX-License-Identifier: Apache-2.0 |
elessair | 0:f269e3021894 | 4 | * Licensed under the Apache License, Version 2.0 (the License); you may |
elessair | 0:f269e3021894 | 5 | * not use this file except in compliance with the License. |
elessair | 0:f269e3021894 | 6 | * You may obtain a copy of the License at |
elessair | 0:f269e3021894 | 7 | * |
elessair | 0:f269e3021894 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
elessair | 0:f269e3021894 | 9 | * |
elessair | 0:f269e3021894 | 10 | * Unless required by applicable law or agreed to in writing, software |
elessair | 0:f269e3021894 | 11 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT |
elessair | 0:f269e3021894 | 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
elessair | 0:f269e3021894 | 13 | * See the License for the specific language governing permissions and |
elessair | 0:f269e3021894 | 14 | * limitations under the License. |
elessair | 0:f269e3021894 | 15 | */ |
elessair | 0:f269e3021894 | 16 | |
elessair | 0:f269e3021894 | 17 | #include "include/callback_handler.h" |
elessair | 0:f269e3021894 | 18 | |
elessair | 0:f269e3021894 | 19 | |
elessair | 0:f269e3021894 | 20 | AbstractMesh *__abstract_mesh_interface = NULL; |
elessair | 0:f269e3021894 | 21 | |
elessair | 0:f269e3021894 | 22 | void __mesh_handler_c_callback(mesh_connection_status_t state) |
elessair | 0:f269e3021894 | 23 | { |
elessair | 0:f269e3021894 | 24 | |
elessair | 0:f269e3021894 | 25 | if (__abstract_mesh_interface) { |
elessair | 0:f269e3021894 | 26 | __abstract_mesh_interface->callback(state); |
elessair | 0:f269e3021894 | 27 | } |
elessair | 0:f269e3021894 | 28 | } |