mirror of
https://github.com/openharmony/drivers_peripheral.git
synced 2026-08-25 13:19:36 -04:00
f8371a5f87
Signed-off-by: sunxuejiao <sunxuejiao5@huawei.com>
54 lines
1.7 KiB
C
54 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* 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 HDI_SENSOR_CHANNEL_H
|
|
#define HDI_SENSOR_CHANNEL_H
|
|
|
|
#include "hdf_io_service_if.h"
|
|
#include "sensor_type.h"
|
|
|
|
#define HDI_SENSOR_GRAVITY (9.80665f)
|
|
#define HDI_SENSOR_ACCEL_LSB 1024
|
|
#define HDI_SENSOR_UNITS 1000
|
|
#define HDI_SENSOR_PI (3.14f)
|
|
#define HDI_SENSOR_SEMICIRCLE (180.0f)
|
|
#define HDI_SENSOR_FLOAT_UNITS (1000.0f)
|
|
#define HDI_SENSOR_FLOAT_HUN_UNITS (100.0f)
|
|
#define HDI_SENSOR_FLOAT_TEN_UNITS (10.0f)
|
|
|
|
enum SensorDataDimension {
|
|
DATA_X = 1,
|
|
DATA_XY = 2,
|
|
DATA_XYZ = 3,
|
|
DATA_XYZA = 4,
|
|
DATA_XYZABC = 6,
|
|
DATA_POSTURE = 8,
|
|
DATA_MAX_DATA_SIZE = DATA_POSTURE
|
|
};
|
|
|
|
struct SensorCovertCoff {
|
|
int32_t sensorTypeId;
|
|
int32_t sensorId;
|
|
enum SensorDataDimension dim;
|
|
float coff[DATA_MAX_DATA_SIZE];
|
|
};
|
|
|
|
int32_t Register(int32_t groupId, RecordDataCallback cb);
|
|
int32_t Unregister(int32_t groupId, RecordDataCallback cb);
|
|
struct HdfDevEventlistener *GetSensorListener(void);
|
|
void SetSensorIdBySensorType(enum SensorTypeTag type, int32_t sensorId);
|
|
|
|
#endif /* HDI_SENSOR_CHANNEL_H */
|