diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-05-23 13:56:22 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-05-23 13:56:22 +1000 |
| commit | a4f94c812a4da7254d31af4061a8f234a1e0e23d (patch) | |
| tree | e8f629a45251dd486ae57f78279243e1f1728d44 /src/main | |
| parent | d71f726c42963d55809605b4dc4144970ca0f230 (diff) | |
| download | tangara-fw-a4f94c812a4da7254d31af4061a8f234a1e0e23d.tar.gz | |
Annote E V E R Y T H I N G with license info
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/main/app_console.cpp | 6 | ||||
| -rw-r--r-- | src/main/app_console.hpp | 6 | ||||
| -rw-r--r-- | src/main/main.cpp | 6 |
4 files changed, 22 insertions, 0 deletions
diff --git a/src/main/CMakeLists.txt b/src/main/CMakeLists.txt index 524a7d30..f4b532cb 100644 --- a/src/main/CMakeLists.txt +++ b/src/main/CMakeLists.txt @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: GPL-3.0-only + idf_component_register( SRCS "main.cpp" "app_console.cpp" INCLUDE_DIRS "." diff --git a/src/main/app_console.cpp b/src/main/app_console.cpp index a85faaf0..2198521e 100644 --- a/src/main/app_console.cpp +++ b/src/main/app_console.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "app_console.hpp" #include <dirent.h> diff --git a/src/main/app_console.hpp b/src/main/app_console.hpp index 3a11d70c..edf2faff 100644 --- a/src/main/app_console.hpp +++ b/src/main/app_console.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <memory> diff --git a/src/main/main.cpp b/src/main/main.cpp index 07547713..2742f9e0 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include <dirent.h> #include <stdint.h> #include <stdio.h> |
