blob: 91849c1b0b4b6079b207ef36a5e8008494838662 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_UI_INPUT_LIB_HID_INPUT_REPORT_AXIS_H_
#define SRC_UI_INPUT_LIB_HID_INPUT_REPORT_AXIS_H_
#include <fuchsia/input/report/llcpp/fidl.h>
#include <hid-parser/parser.h>
#include <hid-parser/units.h>
#include <hid-parser/usages.h>
namespace hid_input_report {
namespace fuchsia_input_report = ::llcpp::fuchsia::input::report;
fuchsia_input_report::Unit HidUnitToLlcppUnit(hid::unit::UnitType unit);
zx_status_t HidSensorUsageToLlcppSensorType(hid::usage::Sensor usage,
fuchsia_input_report::SensorType* type);
zx_status_t HidLedUsageToLlcppLedType(hid::usage::LEDs usage, fuchsia_input_report::LedType* type);
fuchsia_input_report::Axis LlcppAxisFromAttribute(const hid::Attributes& attrs);
} // namespace hid_input_report
#endif // SRC_UI_INPUT_LIB_HID_INPUT_REPORT_AXIS_H_