zephyr/tests/bluetooth/mesh_shell/src/main.c
Anas Nashif 9ab2a56751 cleanup: include/: move misc/printk.h to sys/printk.h
move misc/printk.h to sys/printk.h and
create a shim for backward-compatibility.

No functional changes to the headers.
A warning in the shim can be controlled with CONFIG_COMPAT_INCLUDES.

Related to #16539

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2019-06-27 22:55:49 -04:00

21 lines
379 B
C

/** @file
* @brief Interactive Bluetooth Mesh shell application
*/
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <sys/printk.h>
#include <zephyr.h>
#include <shell/shell.h>
void main(void)
{
printk("Press the <Tab> button for supported commands.\n");
printk("Before any Mesh commands you must run \"mesh init\"\n");
}