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