diff --git a/examples/freertos_plus_tcp/CMakeLists.txt b/examples/freertos_plus_tcp/CMakeLists.txt index 65db6b5d2..eb0799c7b 100644 --- a/examples/freertos_plus_tcp/CMakeLists.txt +++ b/examples/freertos_plus_tcp/CMakeLists.txt @@ -1,3 +1,16 @@ +# +# Copyright (c) 2023 Fictionlab sp. z o.o. +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License 2.0 which is available at +# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +# which is available at https://www.apache.org/licenses/LICENSE-2.0. +# +# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +# +# Contributors: +# Błażej Sowa, + cmake_minimum_required(VERSION 3.20) project(zenohpico_freertos_plus_tcp_examples) diff --git a/examples/freertos_plus_tcp/include/FreeRTOSConfig.h b/examples/freertos_plus_tcp/include/FreeRTOSConfig.h index 98d65e1af..cbd027ce3 100644 --- a/examples/freertos_plus_tcp/include/FreeRTOSConfig.h +++ b/examples/freertos_plus_tcp/include/FreeRTOSConfig.h @@ -1,3 +1,16 @@ +// +// Copyright (c) 2023 Fictionlab sp. z o.o. +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// Błażej Sowa, + #ifndef FREERTOS_CONFIG_H #define FREERTOS_CONFIG_H diff --git a/examples/freertos_plus_tcp/include/FreeRTOSIPConfig.h b/examples/freertos_plus_tcp/include/FreeRTOSIPConfig.h index 4619fbaa5..2070ad000 100644 --- a/examples/freertos_plus_tcp/include/FreeRTOSIPConfig.h +++ b/examples/freertos_plus_tcp/include/FreeRTOSIPConfig.h @@ -1,3 +1,16 @@ +// +// Copyright (c) 2023 Fictionlab sp. z o.o. +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// Błażej Sowa, + #ifndef FREERTOS_IP_CONFIG_H #define FREERTOS_IP_CONFIG_H diff --git a/examples/freertos_plus_tcp/main.c b/examples/freertos_plus_tcp/main.c index 6985f338f..5d53e7c39 100644 --- a/examples/freertos_plus_tcp/main.c +++ b/examples/freertos_plus_tcp/main.c @@ -1,3 +1,16 @@ +// +// Copyright (c) 2023 Fictionlab sp. z o.o. +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// Błażej Sowa, + #include #include diff --git a/include/zenoh-pico/api/types.h b/include/zenoh-pico/api/types.h index fe0294c92..4fb0121a0 100644 --- a/include/zenoh-pico/api/types.h +++ b/include/zenoh-pico/api/types.h @@ -10,6 +10,7 @@ // // Contributors: // ZettaScale Zenoh Team, +// Błażej Sowa, #ifndef ZENOH_PICO_API_TYPES_H #define ZENOH_PICO_API_TYPES_H diff --git a/include/zenoh-pico/net/session.h b/include/zenoh-pico/net/session.h index 6f708a527..693c99a10 100644 --- a/include/zenoh-pico/net/session.h +++ b/include/zenoh-pico/net/session.h @@ -10,7 +10,7 @@ // // Contributors: // ZettaScale Zenoh Team, -// +// Błażej Sowa, #ifndef ZENOH_PICO_SESSION_NETAPI_H #define ZENOH_PICO_SESSION_NETAPI_H diff --git a/include/zenoh-pico/system/platform.h b/include/zenoh-pico/system/platform.h index 6a76e39a0..e0e56e80b 100644 --- a/include/zenoh-pico/system/platform.h +++ b/include/zenoh-pico/system/platform.h @@ -10,7 +10,7 @@ // // Contributors: // ZettaScale Zenoh Team, -// +// Błażej Sowa, #ifndef ZENOH_PICO_SYSTEM_COMMON_H #define ZENOH_PICO_SYSTEM_COMMON_H diff --git a/include/zenoh-pico/system/platform/freertos_plus_tcp.h b/include/zenoh-pico/system/platform/freertos_plus_tcp.h index 6853e9bdc..c7cf3d3b1 100644 --- a/include/zenoh-pico/system/platform/freertos_plus_tcp.h +++ b/include/zenoh-pico/system/platform/freertos_plus_tcp.h @@ -1,3 +1,16 @@ +// +// Copyright (c) 2023 Fictionlab sp. z o.o. +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// Błażej Sowa, + #ifndef ZENOH_PICO_SYSTEM_FREERTOS_PLUS_TCP_TYPES_H #define ZENOH_PICO_SYSTEM_FREERTOS_PLUS_TCP_TYPES_H diff --git a/src/api/api.c b/src/api/api.c index da0608253..975001099 100644 --- a/src/api/api.c +++ b/src/api/api.c @@ -10,6 +10,7 @@ // // Contributors: // ZettaScale Zenoh Team, +// Błażej Sowa, #include #include diff --git a/src/net/session.c b/src/net/session.c index 970c54636..898a37499 100644 --- a/src/net/session.c +++ b/src/net/session.c @@ -10,6 +10,7 @@ // // Contributors: // ZettaScale Zenoh Team, +// Błażej Sowa, #include "zenoh-pico/net/session.h" diff --git a/src/system/freertos_plus_tcp/network.c b/src/system/freertos_plus_tcp/network.c index ec93c2baf..6d7c44cd6 100644 --- a/src/system/freertos_plus_tcp/network.c +++ b/src/system/freertos_plus_tcp/network.c @@ -1,3 +1,18 @@ +// +// Copyright (c) 2022 ZettaScale Technology +// Copyright (c) 2023 Fictionlab sp. z o.o. +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// ZettaScale Zenoh Team, +// Błażej Sowa, + #include #include "zenoh-pico/system/platform.h" diff --git a/src/system/freertos_plus_tcp/system.c b/src/system/freertos_plus_tcp/system.c index a15c8f442..a68e3cdf3 100644 --- a/src/system/freertos_plus_tcp/system.c +++ b/src/system/freertos_plus_tcp/system.c @@ -1,3 +1,18 @@ +// +// Copyright (c) 2022 ZettaScale Technology +// Copyright (c) 2023 Fictionlab sp. z o.o. +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// ZettaScale Zenoh Team, +// Błażej Sowa, + #include #include #include