- Reorganize the software directory to support multiple Zephyr applications (gateway, slave_node). - Create a clear separation between applications and shared libraries. - Add placeholder files for gateway and slave_node applications.
14 lines
176 B
C
14 lines
176 B
C
/*
|
|
* Copyright (c) 2025 Eduard Iten
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/kernel.h>
|
|
|
|
int main(void)
|
|
{
|
|
printk("Hello from Gateway!\n");
|
|
return 0;
|
|
}
|