input_pipeline/mouse_model_database/
data.rs

1// Copyright 2023 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// This file contains mouse CPI database, not in ChromiumOS's database.
6// We may temporary store some models here, then contribute to ChromiumOS's
7// database. Then sync back and cleanup.
8
9pub(crate) const MODELS: [(&'static str, &'static str, u32, &'static str); 2] = [
10    // Logitech Mouses
11    ("046d", "c24c", 4000, "Logitech G400s"),
12    ("046d", "c08e", 1600, "Logitech MX518 2018"),
13];