blob: d0a890a381ac5e063c9fa82a34cbd6873e7bba81 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_ACCELEROMETER_ACCELEROMETER_CONSTANTS_H_
#define ASH_ACCELEROMETER_ACCELEROMETER_CONSTANTS_H_
#include <array>
#include "ash/accelerometer/accelerometer_types.h"
namespace ash {
inline constexpr std::array<const char[8], 3> kAccelerometerChannels = {
"accel_x", "accel_y", "accel_z"};
inline constexpr std::array<const char[10], 3> kGyroscopeChannels = {
"anglvel_x", "anglvel_y", "anglvel_z"};
// The number of axes for which there are accelerometer readings.
constexpr uint32_t kNumberOfAxes = 3u;
// The names of the accelerometers. Matches up with the enum AccelerometerSource
// in ash/accelerometer/accelerometer_types.h.
const char kLocationStrings[ACCELEROMETER_SOURCE_COUNT][5] = {"lid", "base"};
} // namespace ash
#endif // ASH_ACCELEROMETER_ACCELEROMETER_CONSTANTS_H_