blob: a290ed243f8a47c5112c84ba30cf2d3b3e209cd7 [file] [log] [blame]
Yu-Han Yanga2f77322018-03-06 10:12:55 -08001/*
Yu-Han Yanga5098612019-02-08 16:22:07 -08002 * Copyright (C) 2019 The Android Open Source Project
Yu-Han Yanga2f77322018-03-06 10:12:55 -08003 *
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
Yu-Han Yanga5098612019-02-08 16:22:07 -080017#ifndef android_hardware_gnss_common_Constants_H_
18#define android_hardware_gnss_common_Constants_H_
19
20#include <cstdint>
Yu-Han Yanga2f77322018-03-06 10:12:55 -080021
22namespace android {
23namespace hardware {
24namespace gnss {
Yu-Han Yanga5098612019-02-08 16:22:07 -080025namespace common {
Yu-Han Yanga2f77322018-03-06 10:12:55 -080026
Yu-Han Yanga2f77322018-03-06 10:12:55 -080027const float kMockHorizontalAccuracyMeters = 5;
28const float kMockVerticalAccuracyMeters = 5;
29const float kMockSpeedAccuracyMetersPerSecond = 1;
30const float kMockBearingAccuracyDegrees = 90;
31const int64_t kMockTimestamp = 1519930775453L;
32
Yu-Han Yanga5098612019-02-08 16:22:07 -080033} // namespace common
Yu-Han Yanga2f77322018-03-06 10:12:55 -080034} // namespace gnss
35} // namespace hardware
36} // namespace android
37
Yu-Han Yanga5098612019-02-08 16:22:07 -080038#endif // android_hardware_gnss_common_Constants_H_