3fe9c310d1
* Source: LineageOS/android_hardware_interfaces@ef97157 Change-Id: Id12ceb1bca1578a0c8a9e048562a224ec74d93fb
45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef HARDWARE_INTERFACES_SENSORS_V1_0_DEFAULT_INCLUDE_CONVERT_H_
|
|
|
|
#define HARDWARE_INTERFACES_SENSORS_V1_0_DEFAULT_INCLUDE_CONVERT_H_
|
|
|
|
#include <android/hardware/sensors/1.0/ISensors.h>
|
|
#include <hardware/sensors.h>
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace sensors {
|
|
namespace V1_0 {
|
|
namespace implementation {
|
|
|
|
void convertFromSensor(const sensor_t &src, SensorInfo *dst);
|
|
void convertToSensor(const SensorInfo &src, sensor_t *dst);
|
|
|
|
void convertFromSensorEvent(const sensors_event_t &src, Event *dst);
|
|
void convertToSensorEvent(const Event &src, sensors_event_t *dst);
|
|
|
|
bool convertFromSharedMemInfo(const SharedMemInfo& memIn, sensors_direct_mem_t *memOut);
|
|
int convertFromRateLevel(RateLevel rate);
|
|
|
|
} // namespace implementation
|
|
} // namespace V1_0
|
|
} // namespace sensors
|
|
} // namespace hardware
|
|
} // namespace android
|
|
|
|
#endif // HARDWARE_INTERFACES_SENSORS_V1_0_DEFAULT_INCLUDE_CONVERT_H_
|