Now that input dump functionalities are at subsystem level, drop the custom code from the sample, just enable CONFIG_INPUT_EVENT_DUMP. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
14 lines
164 B
C
14 lines
164 B
C
/*
|
|
* Copyright 2023 Google LLC
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("Input sample started\n");
|
|
return 0;
|
|
}
|