The polling properties are a period in us but are named as "-rate" right now, which would imply that that's a frequency. Rename them to "period-us" to make that unambiguous. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
hid_dev_0: hid_dev_0 {
|
|
compatible = "zephyr,hid-device";
|
|
interface-name = "HID0";
|
|
protocol-code = "none";
|
|
in-polling-period-us = <1000>;
|
|
in-report-size = <64>;
|
|
};
|
|
};
|