This PR relocates the sensor trigger sample application from the `sensor_shell` sample to a subcommand in the actual sensor shell. The subcommand has a UI for enabling a given trigger on a given sensor. A built-in handler for the data_ready trigger is included that prints the latest data to the log. Currently, only `SENSOR_TRIG_DATA_READY` is supported but the groundwork is there to add others. Tested on a `tdk_robokit1` board. Signed-off-by: Tristan Honscheid <honscheid@google.com>
16 lines
288 B
C
16 lines
288 B
C
/*
|
|
* Copyright (c) 2018 Diego Sueiro
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*
|
|
* This sample app launches a shell. Interact with it using the `sensor` command. See
|
|
* `drivers/sensor/sensor_shell.c`. There is nothing to do in the main thread.
|
|
*/
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|