/* Copyright 2021 The ChromiumOS Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* Functions needed by keyboard scanner module for Chrome EC */ #include #include #include #include #include "drivers/cros_kb_raw.h" #include "keyboard_raw.h" /** * Return true if the current value of the given input GPIO port is zero */ int keyboard_raw_is_input_low(int port, int id) { /* * TODO: implement for factory testing KSI and KSO pin as GPIO * function. */ return 0; }