Toyomasa Watarai
/
Mbed-example-WS-W27
simple-mbed-cloud-client/mbed-cloud-client/nanostack-libservice/mbed-client-libservice/ns_trace.h@0:119624335925, 2018-06-30 (annotated)
- Committer:
- MACRUM
- Date:
- Sat Jun 30 01:40:30 2018 +0000
- Revision:
- 0:119624335925
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MACRUM | 0:119624335925 | 1 | /* |
MACRUM | 0:119624335925 | 2 | * Copyright (c) 2015-2017 ARM Limited. All rights reserved. |
MACRUM | 0:119624335925 | 3 | * SPDX-License-Identifier: Apache-2.0 |
MACRUM | 0:119624335925 | 4 | * Licensed under the Apache License, Version 2.0 (the License); you may |
MACRUM | 0:119624335925 | 5 | * not use this file except in compliance with the License. |
MACRUM | 0:119624335925 | 6 | * You may obtain a copy of the License at |
MACRUM | 0:119624335925 | 7 | * |
MACRUM | 0:119624335925 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
MACRUM | 0:119624335925 | 9 | * |
MACRUM | 0:119624335925 | 10 | * Unless required by applicable law or agreed to in writing, software |
MACRUM | 0:119624335925 | 11 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT |
MACRUM | 0:119624335925 | 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
MACRUM | 0:119624335925 | 13 | * See the License for the specific language governing permissions and |
MACRUM | 0:119624335925 | 14 | * limitations under the License. |
MACRUM | 0:119624335925 | 15 | */ |
MACRUM | 0:119624335925 | 16 | |
MACRUM | 0:119624335925 | 17 | /** |
MACRUM | 0:119624335925 | 18 | * \file ns_trace.h |
MACRUM | 0:119624335925 | 19 | * Trace interface abstraction for NanoStack library as well as application. |
MACRUM | 0:119624335925 | 20 | * |
MACRUM | 0:119624335925 | 21 | * Actual used trace library is mbed-trace. For usage details check mbed_trace.h. |
MACRUM | 0:119624335925 | 22 | * |
MACRUM | 0:119624335925 | 23 | */ |
MACRUM | 0:119624335925 | 24 | #ifndef NS_TRACE_H_ |
MACRUM | 0:119624335925 | 25 | #define NS_TRACE_H_ |
MACRUM | 0:119624335925 | 26 | |
MACRUM | 0:119624335925 | 27 | #if defined(HAVE_DEBUG) && !defined(FEA_TRACE_SUPPORT) |
MACRUM | 0:119624335925 | 28 | #define FEA_TRACE_SUPPORT |
MACRUM | 0:119624335925 | 29 | #endif |
MACRUM | 0:119624335925 | 30 | |
MACRUM | 0:119624335925 | 31 | #include "mbed-trace/mbed_trace.h" |
MACRUM | 0:119624335925 | 32 | |
MACRUM | 0:119624335925 | 33 | #endif /* NS_TRACE_H_ */ |