summaryrefslogtreecommitdiff
path: root/src/sensors-service/sns-meta-data.c
blob: 2b218d15420a21ff56927776aaf9f829e23e7b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**************************************************************************
* @licence app begin@
*
* SPDX-License-Identifier: MPL-2.0
*
* \ingroup SensorsService
* \author Marco Residori <marco.residori@xse.de>
*
* \copyright Copyright (C) 2013, XS Embedded GmbH
* 
* \license
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
* this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* @licence end@
**************************************************************************/

#include "globals.h"
#include "sns-meta-data.h"

#define NUM_SENSORS 4

const TSensorMetaData gSensorsMetaData[NUM_SENSORS] = {
    {GENIVI_SNS_API_MAJOR,        //version
     SENSOR_CATEGORY_PHYSICAL,    //category
     SENSOR_TYPE_WHEELTICK,       //type
     100},                        //cycleTime in ms
    {GENIVI_SNS_API_MAJOR,        //version
     SENSOR_CATEGORY_PHYSICAL,    //category
     SENSOR_TYPE_GYROSCOPE,       //type
     100},                        //cycleTime in ms
    {GENIVI_SNS_API_MAJOR,        //version
     SENSOR_CATEGORY_PHYSICAL,    //category
     SENSOR_TYPE_VEHICLE_SPEED,   //type
     100},                         //cycleTime in ms
    {GENIVI_SNS_API_MAJOR,        //version
     SENSOR_CATEGORY_PHYSICAL,    //category
     SENSOR_TYPE_ACCELERATION,    //type
     100}                         //cycleTime in ms     
};

int32_t getSensorMetaDataList(const TSensorMetaData** metadata)
{
    *metadata = gSensorsMetaData;

    return NUM_SENSORS;
}