zephyr-configurator/data/main.c
H4CK3R-01 a75c2d467c
All checks were successful
Build & Publish / build (push) Successful in 8m17s
Added new bluetooth samples
2023-09-08 13:28:04 +02:00

15 lines
251 B
C

/*
* Copyright (c) 2021 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <app_version.h>
int main(void)
{
int err;
printk("Zephyr Example Application %s\n", APP_VERSION_STRING);
return 0;
}