summaryrefslogtreecommitdiff
path: root/sensors-service/src/globals.h
blob: c9280f7c35208ce570e8ea2a3188d7c102640533 (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
/**************************************************************************
* @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@
**************************************************************************/

#ifndef GLOBALS_H
#define GLOBALS_H

#include <stdbool.h>
#include <pthread.h>
#include <time.h>

#include "sns-init.h"
#include "wheel.h"
#include "gyroscope.h"
#include "vehicle-speed.h"
#include "sns-meta-data.h"

extern pthread_mutex_t mutexCb;
extern pthread_mutex_t mutexData;

extern TGyroscopeData gGyroscopeData;
extern TWheelticks gWheelticks;
TVehicleSpeedData gVehicleSpeedData;
extern const TSensorMetaData gSensorsMetaData[];

extern WheeltickCallback cbWheelticks;
extern GyroscopeCallback cbGyroscope;
VehicleSpeedCallback cbVehicleSpeed;

#endif /* GLOBALS_H */