Level measurement using range finder and lora technology

Dependencies:   Cayenne-LPP SDBlockDevice

Committer:
wamae
Date:
Wed Jun 26 10:35:50 2019 +0000
Revision:
0:f930f0440fd5
better copy

Who changed what in which revision?

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