getting location and activity

Dependencies:   Cayenne-LPP GPS

Committer:
kimutaingetich
Date:
Mon Mar 11 09:24:37 2019 +0000
Revision:
0:68ca78749806
time changes

Who changed what in which revision?

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