Applied consistent code formatting using clang-format to all C/C++ source and header files in the 'software/' directory.
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;
|
|
}
|