You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
305 B
20 lines
305 B
/* |
|
* Copyright (c) 2017 Intel Corporation |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/* hello world example: calling functions from a static library */ |
|
|
|
|
|
#include <zephyr/kernel.h> |
|
#include <stdio.h> |
|
|
|
#include <mylib.h> |
|
|
|
int main(void) |
|
{ |
|
printf("Hello World!\n"); |
|
mylib_hello_world(); |
|
return 0; |
|
}
|
|
|