TrustedFirmware Git Browser
Code Review
Sign In
review.trustedfirmware.org
/
mirror
/
mcuboot
/
afb2bc90c63e5faed7bae63cb014383b10485f05
/
.
/
samples
/
zephyr
/
hello-world
/
src
/
main.c
blob: 189b1fb4460fad8949915466af5469630d1a3a57 [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2017 Linaro, Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<zephyr.h>
#include
<misc/printk.h>
void
main
(
void
)
{
printk
(
"Hello World from %s on %s!\n"
,
MCUBOOT_HELLO_WORLD_FROM
,
CONFIG_BOARD
);
}