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>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2023-09-08 11:28:04 +00:00
|
|
|
int err;
|
2023-07-31 08:47:57 +00:00
|
|
|
printk("Zephyr Example Application %s\n", APP_VERSION_STRING);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|