1 /*
2  * Copyright (c) 2023 Enphase Energy
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 
main(void)9 int main(void)
10 {
11 	/* This sample uses the shell */
12 	k_sleep(K_FOREVER);
13 
14 	return 0;
15 }
16