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/tasks | |
| 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/tasks')
| -rw-r--r-- | src/tasks/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/tasks/tasks.cpp | 6 | ||||
| -rw-r--r-- | src/tasks/tasks.hpp | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/src/tasks/CMakeLists.txt b/src/tasks/CMakeLists.txt index 0503d293..b2d1d46c 100644 --- a/src/tasks/CMakeLists.txt +++ b/src/tasks/CMakeLists.txt @@ -1,2 +1,6 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: GPL-3.0-only + idf_component_register(SRCS "tasks.cpp" INCLUDE_DIRS ".") target_compile_options(${COMPONENT_LIB} PRIVATE ${EXTRA_WARNINGS}) diff --git a/src/tasks/tasks.cpp b/src/tasks/tasks.cpp index b9fce7ec..b267277a 100644 --- a/src/tasks/tasks.cpp +++ b/src/tasks/tasks.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "tasks.hpp" const UBaseType_t kTaskPriorityLvgl = 4; diff --git a/src/tasks/tasks.hpp b/src/tasks/tasks.hpp index 47668aea..b893b663 100644 --- a/src/tasks/tasks.hpp +++ b/src/tasks/tasks.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include "freertos/portmacro.h" |
