NuMaker mbed OS v6.x LoRaWAN

Committer:
cyliang
Date:
Tue Sep 01 20:28:04 2020 +0800
Revision:
0:a160d512fe55
Mbed OS v6.x LoRaWAN example for NuMaker platforms

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cyliang 0:a160d512fe55 1 /**
cyliang 0:a160d512fe55 2 * Copyright (c) 2017, Arm Limited and affiliates.
cyliang 0:a160d512fe55 3 * SPDX-License-Identifier: Apache-2.0
cyliang 0:a160d512fe55 4 *
cyliang 0:a160d512fe55 5 * Licensed under the Apache License, Version 2.0 (the "License");
cyliang 0:a160d512fe55 6 * you may not use this file except in compliance with the License.
cyliang 0:a160d512fe55 7 * You may obtain a copy of the License at
cyliang 0:a160d512fe55 8 *
cyliang 0:a160d512fe55 9 * http://www.apache.org/licenses/LICENSE-2.0
cyliang 0:a160d512fe55 10 *
cyliang 0:a160d512fe55 11 * Unless required by applicable law or agreed to in writing, software
cyliang 0:a160d512fe55 12 * distributed under the License is distributed on an "AS IS" BASIS,
cyliang 0:a160d512fe55 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
cyliang 0:a160d512fe55 14 * See the License for the specific language governing permissions and
cyliang 0:a160d512fe55 15 * limitations under the License.
cyliang 0:a160d512fe55 16 */
cyliang 0:a160d512fe55 17
cyliang 0:a160d512fe55 18 #ifndef APP_TRACE_HELPER_H_
cyliang 0:a160d512fe55 19 #define APP_TRACE_HELPER_H_
cyliang 0:a160d512fe55 20
cyliang 0:a160d512fe55 21 /**
cyliang 0:a160d512fe55 22 * Helper function for the application to setup Mbed trace.
cyliang 0:a160d512fe55 23 * It Wouldn't do anything if the FEATURE_COMMON_PAL is not added
cyliang 0:a160d512fe55 24 * or if the trace is disabled using mbed_app.json
cyliang 0:a160d512fe55 25 */
cyliang 0:a160d512fe55 26 void setup_trace();
cyliang 0:a160d512fe55 27
cyliang 0:a160d512fe55 28 #endif /* APP_TRACE_HELPER_H_ */