| /* | |
| * Copyright (c) 2022 Nordic Semiconductor ASA | |
| * | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| #include <zephyr/kernel.h> | |
| #include <zephyr/sys/printk.h> | |
| #include <zephyr/logging/log.h> | |
| LOG_MODULE_REGISTER(app); | |
| int main(void) | |
| { | |
| printk("Hello World! %s\n", CONFIG_BOARD); | |
| return 0; | |
| } |