21 lines
289 B
C
21 lines
289 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* hello world example: calling functions from a static library */
|
|
|
|
|
|
#include <zephyr.h>
|
|
#include <stdio.h>
|
|
|
|
#include <mylib.h>
|
|
|
|
void main(void)
|
|
{
|
|
printf("Hello World!\n");
|
|
mylib_hello_world();
|
|
}
|
|
|