1 /* 2 * Copyright (c) 2018 Diego Sueiro 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /* 8 * This sample app launches a shell. Interact with it using the `sensor` command. See 9 * `drivers/sensor/sensor_shell.c`. There is nothing to do in the main thread. 10 */ 11 main(void)12int main(void) 13 { 14 return 0; 15 } 16