common_library: gettid is multiple declaration in cl_error
[staging/basesystem.git] / video_in_hal / vehicleservice / positioning / server / src / Sensor / VehicleSens_Did_LocationInfoNmea.cpp
1 /*
2  * @copyright Copyright (c) 2018-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**************************************************************************//**
18 @file       VehicleSens_Did_LocationInfoNmea.cpp
19 @detail     Location Information (NMEA) Management of information data master
20 ******************************************************************************/
21 #include <vehicle_service/positioning_base_library.h>
22 #include "VehicleSens_DataMaster.h"
23
24 /*************************************************
25  *           Global variable                      *
26  *************************************************/
27
28 /**************************************************************************//**
29 @brief      VehicleSens_GetLocationInfoNmea<BR>
30             Location Information (NMEA) Information Data Master GET Processing
31 @outline    Location Information (NMEA) Provide an information data master
32 @param[in]  u_int8                   ucGetMethod : Acquisition method(GPS or Navi)
33 @param[out] VEHICLESENS_DATA_MASTER_GPS_FORMAT *pstData     : Pointer to the data master acquisition destination
34 @return     none
35 @retval     none
36 *******************************************************************************/
37 void VehicleSens_GetLocationInfoNmea(VEHICLESENS_DATA_MASTER_GPS_FORMAT *pstData, u_int8 ucGetMethod)
38 {
39     switch(ucGetMethod)
40     {
41         case VEHICLESENS_GETMETHOD_NAVI:
42         {
43             VehicleSens_GetLocationInfoNmea_n(pstData);
44             break;
45         }
46
47         default:
48             break;
49     }
50 }