From 06fb3e180e9ed3d4711c092dca7da9a822349702 Mon Sep 17 00:00:00 2001 From: Riuzakiii Date: Fri, 15 Dec 2023 14:39:04 +0100 Subject: [PATCH] Fix copyright notices --- src/wch-ch56x-lib/HSPIDevice/hspi.c | 10 +++++----- src/wch-ch56x-lib/HSPIDevice/hspi.h | 8 ++++---- src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.c | 8 ++++---- src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.h | 8 ++++---- src/wch-ch56x-lib/SerDesDevice/serdes.c | 6 +++--- src/wch-ch56x-lib/SerDesDevice/serdes.h | 6 +++--- src/wch-ch56x-lib/USBDevice/usb20.c | 8 ++++---- src/wch-ch56x-lib/USBDevice/usb20.h | 8 ++++---- src/wch-ch56x-lib/USBDevice/usb2_utils.h | 4 ++-- src/wch-ch56x-lib/USBDevice/usb30.c | 8 ++++---- src/wch-ch56x-lib/USBDevice/usb30.h | 8 ++++---- src/wch-ch56x-lib/USBDevice/usb30_utils.h | 8 ++++---- src/wch-ch56x-lib/USBDevice/usb_descriptors.h | 4 ++-- src/wch-ch56x-lib/USBDevice/usb_device.c | 4 ++-- src/wch-ch56x-lib/USBDevice/usb_device.h | 4 ++-- src/wch-ch56x-lib/USBDevice/usb_endpoints.c | 4 ++-- src/wch-ch56x-lib/USBDevice/usb_endpoints.h | 5 ++--- src/wch-ch56x-lib/USBDevice/usb_types.h | 8 ++++---- src/wch-ch56x-lib/interrupt_queue/interrupt_queue.c | 4 ++-- src/wch-ch56x-lib/interrupt_queue/interrupt_queue.h | 4 ++-- src/wch-ch56x-lib/logging/log_printf.c | 6 +++--- src/wch-ch56x-lib/logging/log_printf.h | 6 +++--- src/wch-ch56x-lib/logging/log_serdes.c | 6 +++--- src/wch-ch56x-lib/logging/log_serdes.h | 6 +++--- src/wch-ch56x-lib/logging/log_to_buffer.c | 6 +++--- src/wch-ch56x-lib/logging/log_to_buffer.h | 6 +++--- src/wch-ch56x-lib/logging/logging.c | 6 +++--- src/wch-ch56x-lib/logging/logging.h | 6 +++--- src/wch-ch56x-lib/logging/logging_definitions.h | 4 ++-- src/wch-ch56x-lib/memory/alloc.c | 6 +++--- src/wch-ch56x-lib/memory/fifo.c | 5 +++-- src/wch-ch56x-lib/memory/fifo.h | 5 +++-- src/wch-ch56x-lib/memory/ramx_alloc.c | 6 +++--- src/wch-ch56x-lib/memory/ramx_alloc.h | 6 +++--- tools/firmware_debug_board/User/main.c | 4 ++-- .../User/usb2_device_descriptors.h | 4 ++-- tools/firmware_debug_board/User/usb_device.h | 4 ++-- 37 files changed, 110 insertions(+), 109 deletions(-) diff --git a/src/wch-ch56x-lib/HSPIDevice/hspi.c b/src/wch-ch56x-lib/HSPIDevice/hspi.c index f3ad741..4f44f03 100644 --- a/src/wch-ch56x-lib/HSPIDevice/hspi.c +++ b/src/wch-ch56x-lib/HSPIDevice/hspi.c @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -*******************************************************************************/ +********************************************************************************/ #include "wch-ch56x-lib/HSPIDevice/hspi.h" #include "wch-ch56x-lib/logging/logging.h" diff --git a/src/wch-ch56x-lib/HSPIDevice/hspi.h b/src/wch-ch56x-lib/HSPIDevice/hspi.h index 46065a3..44977fb 100644 --- a/src/wch-ch56x-lib/HSPIDevice/hspi.h +++ b/src/wch-ch56x-lib/HSPIDevice/hspi.h @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.c b/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.c index d296811..cb57518 100644 --- a/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.c +++ b/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.c @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.h b/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.h index ce98795..69526b6 100644 --- a/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.h +++ b/src/wch-ch56x-lib/HSPIDeviceScheduled/hspi_scheduled.h @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/SerDesDevice/serdes.c b/src/wch-ch56x-lib/SerDesDevice/serdes.c index b1a58dd..d1df3c8 100644 --- a/src/wch-ch56x-lib/SerDesDevice/serdes.c +++ b/src/wch-ch56x-lib/SerDesDevice/serdes.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/SerDesDevice/serdes.h b/src/wch-ch56x-lib/SerDesDevice/serdes.h index 1441081..e17bdbc 100644 --- a/src/wch-ch56x-lib/SerDesDevice/serdes.h +++ b/src/wch-ch56x-lib/SerDesDevice/serdes.h @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb20.c b/src/wch-ch56x-lib/USBDevice/usb20.c index 8ab4a88..342bdda 100644 --- a/src/wch-ch56x-lib/USBDevice/usb20.c +++ b/src/wch-ch56x-lib/USBDevice/usb20.c @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb20.h b/src/wch-ch56x-lib/USBDevice/usb20.h index 8187ec6..ffee81e 100644 --- a/src/wch-ch56x-lib/USBDevice/usb20.h +++ b/src/wch-ch56x-lib/USBDevice/usb20.h @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb2_utils.h b/src/wch-ch56x-lib/USBDevice/usb2_utils.h index fb6eda6..20ccf99 100644 --- a/src/wch-ch56x-lib/USBDevice/usb2_utils.h +++ b/src/wch-ch56x-lib/USBDevice/usb2_utils.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb30.c b/src/wch-ch56x-lib/USBDevice/usb30.c index 037ca2e..0d13d25 100644 --- a/src/wch-ch56x-lib/USBDevice/usb30.c +++ b/src/wch-ch56x-lib/USBDevice/usb30.c @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb30.h b/src/wch-ch56x-lib/USBDevice/usb30.h index 181bc20..d8488b2 100644 --- a/src/wch-ch56x-lib/USBDevice/usb30.h +++ b/src/wch-ch56x-lib/USBDevice/usb30.h @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb30_utils.h b/src/wch-ch56x-lib/USBDevice/usb30_utils.h index 204af73..7ddccbf 100644 --- a/src/wch-ch56x-lib/USBDevice/usb30_utils.h +++ b/src/wch-ch56x-lib/USBDevice/usb30_utils.h @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb_descriptors.h b/src/wch-ch56x-lib/USBDevice/usb_descriptors.h index d4812a7..51969b6 100644 --- a/src/wch-ch56x-lib/USBDevice/usb_descriptors.h +++ b/src/wch-ch56x-lib/USBDevice/usb_descriptors.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb_device.c b/src/wch-ch56x-lib/USBDevice/usb_device.c index 39a8fa1..1d289fe 100644 --- a/src/wch-ch56x-lib/USBDevice/usb_device.c +++ b/src/wch-ch56x-lib/USBDevice/usb_device.c @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb_device.h b/src/wch-ch56x-lib/USBDevice/usb_device.h index f5e1594..5d936d1 100644 --- a/src/wch-ch56x-lib/USBDevice/usb_device.h +++ b/src/wch-ch56x-lib/USBDevice/usb_device.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb_endpoints.c b/src/wch-ch56x-lib/USBDevice/usb_endpoints.c index 522ba43..3c603b4 100644 --- a/src/wch-ch56x-lib/USBDevice/usb_endpoints.c +++ b/src/wch-ch56x-lib/USBDevice/usb_endpoints.c @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb_endpoints.h b/src/wch-ch56x-lib/USBDevice/usb_endpoints.h index b14ca20..3be4029 100644 --- a/src/wch-ch56x-lib/USBDevice/usb_endpoints.h +++ b/src/wch-ch56x-lib/USBDevice/usb_endpoints.h @@ -1,6 +1,5 @@ - -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/USBDevice/usb_types.h b/src/wch-ch56x-lib/USBDevice/usb_types.h index 39565c4..8afaf3a 100644 --- a/src/wch-ch56x-lib/USBDevice/usb_types.h +++ b/src/wch-ch56x-lib/USBDevice/usb_types.h @@ -1,7 +1,7 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2021 Nanjing Qinheng -Microelectronics Co., Ltd. Copyright (c) 2022 Benjamin VERNOUX Copyright (c) -2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd. +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.c b/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.c index 0f37188..ab207e4 100644 --- a/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.c +++ b/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.c @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.h b/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.h index 5abcf79..ba186e0 100644 --- a/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.h +++ b/src/wch-ch56x-lib/interrupt_queue/interrupt_queue.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/log_printf.c b/src/wch-ch56x-lib/logging/log_printf.c index 2617f88..fde55eb 100644 --- a/src/wch-ch56x-lib/logging/log_printf.c +++ b/src/wch-ch56x-lib/logging/log_printf.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/log_printf.h b/src/wch-ch56x-lib/logging/log_printf.h index 18c4f24..ea1e2cc 100644 --- a/src/wch-ch56x-lib/logging/log_printf.h +++ b/src/wch-ch56x-lib/logging/log_printf.h @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/log_serdes.c b/src/wch-ch56x-lib/logging/log_serdes.c index aa2f910..56c57d1 100644 --- a/src/wch-ch56x-lib/logging/log_serdes.c +++ b/src/wch-ch56x-lib/logging/log_serdes.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/log_serdes.h b/src/wch-ch56x-lib/logging/log_serdes.h index d0c8013..f599662 100644 --- a/src/wch-ch56x-lib/logging/log_serdes.h +++ b/src/wch-ch56x-lib/logging/log_serdes.h @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/log_to_buffer.c b/src/wch-ch56x-lib/logging/log_to_buffer.c index 2fb6a65..052df59 100644 --- a/src/wch-ch56x-lib/logging/log_to_buffer.c +++ b/src/wch-ch56x-lib/logging/log_to_buffer.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/log_to_buffer.h b/src/wch-ch56x-lib/logging/log_to_buffer.h index db46474..fdd80ff 100644 --- a/src/wch-ch56x-lib/logging/log_to_buffer.h +++ b/src/wch-ch56x-lib/logging/log_to_buffer.h @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/logging.c b/src/wch-ch56x-lib/logging/logging.c index 01dec0b..d49da33 100644 --- a/src/wch-ch56x-lib/logging/logging.c +++ b/src/wch-ch56x-lib/logging/logging.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/logging.h b/src/wch-ch56x-lib/logging/logging.h index dc8987b..4be4041 100644 --- a/src/wch-ch56x-lib/logging/logging.h +++ b/src/wch-ch56x-lib/logging/logging.h @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2022 Benjamin VERNOUX Copyright -(c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2022 Benjamin VERNOUX +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/logging/logging_definitions.h b/src/wch-ch56x-lib/logging/logging_definitions.h index 9409ba4..3bbb86e 100644 --- a/src/wch-ch56x-lib/logging/logging_definitions.h +++ b/src/wch-ch56x-lib/logging/logging_definitions.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/memory/alloc.c b/src/wch-ch56x-lib/memory/alloc.c index 18d10a0..4b42ced 100644 --- a/src/wch-ch56x-lib/memory/alloc.c +++ b/src/wch-ch56x-lib/memory/alloc.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2020 Nicolas OBERLI -(HydraBus/HydraNFC) Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2020 Nicolas OBERLI (HydraBus/HydraNFC) +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/memory/fifo.c b/src/wch-ch56x-lib/memory/fifo.c index 62293e7..eb829dc 100644 --- a/src/wch-ch56x-lib/memory/fifo.c +++ b/src/wch-ch56x-lib/memory/fifo.c @@ -1,5 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/memory/fifo.h b/src/wch-ch56x-lib/memory/fifo.h index 369d6cf..44178c9 100644 --- a/src/wch-ch56x-lib/memory/fifo.h +++ b/src/wch-ch56x-lib/memory/fifo.h @@ -1,5 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/memory/ramx_alloc.c b/src/wch-ch56x-lib/memory/ramx_alloc.c index 0b2da76..a96c10d 100644 --- a/src/wch-ch56x-lib/memory/ramx_alloc.c +++ b/src/wch-ch56x-lib/memory/ramx_alloc.c @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2020 Nicolas OBERLI -(HydraBus/HydraNFC) Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2020 Nicolas OBERLI (HydraBus/HydraNFC) +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/wch-ch56x-lib/memory/ramx_alloc.h b/src/wch-ch56x-lib/memory/ramx_alloc.h index 69515f2..99bec2d 100644 --- a/src/wch-ch56x-lib/memory/ramx_alloc.h +++ b/src/wch-ch56x-lib/memory/ramx_alloc.h @@ -1,6 +1,6 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2020 Nicolas OBERLI -(HydraBus/HydraNFC) Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2020 Nicolas OBERLI (HydraBus/HydraNFC) +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/tools/firmware_debug_board/User/main.c b/tools/firmware_debug_board/User/main.c index 9171fce..65879f5 100644 --- a/tools/firmware_debug_board/User/main.c +++ b/tools/firmware_debug_board/User/main.c @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/tools/firmware_debug_board/User/usb2_device_descriptors.h b/tools/firmware_debug_board/User/usb2_device_descriptors.h index e4a210e..e091c86 100644 --- a/tools/firmware_debug_board/User/usb2_device_descriptors.h +++ b/tools/firmware_debug_board/User/usb2_device_descriptors.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/tools/firmware_debug_board/User/usb_device.h b/tools/firmware_debug_board/User/usb_device.h index ea132b6..8cc2d0a 100644 --- a/tools/firmware_debug_board/User/usb_device.h +++ b/tools/firmware_debug_board/User/usb_device.h @@ -1,5 +1,5 @@ -/********************************** (C) COPYRIGHT -******************************* Copyright (c) 2023 Quarkslab +/********************************** (C) COPYRIGHT ******************************* +Copyright (c) 2023 Quarkslab Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.