zephyr-configurator/data/main.c

17 lines
323 B
C
Raw Normal View History

2023-07-31 08:47:57 +00:00
/*
* Copyright (c) 2021 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <app_version.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(main, CONFIG_APP_LOG_LEVEL);
int main(void)
{
printk("Zephyr Example Application %s\n", APP_VERSION_STRING);
return 0;
}