From 69461e8911069996078211c29c044f40a635ffb9 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 11 Nov 2023 14:56:10 -0600 Subject: [PATCH] changed copyright for 2023 --- Apps/Inc/Print_Queue.h | 2 +- Apps/Src/Print_Queue.c | 2 +- BSP/STM32F413/Src/retarget.c | 2 +- Tasks/Inc/Tasks.h | 2 +- Tasks/Src/Task_Init.c | 2 +- Tasks/Src/Task_Print.c | 2 +- Tasks/Src/Tasks.c | 2 +- Tests/Test_Buffer_Print.c | 2 ++ 8 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Apps/Inc/Print_Queue.h b/Apps/Inc/Print_Queue.h index e2c461d8..9e7892b1 100644 --- a/Apps/Inc/Print_Queue.h +++ b/Apps/Inc/Print_Queue.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ /** Print_Queue.c * Queue that holds all characters to be printed that Task_Print needs to send to UART. */ diff --git a/Apps/Src/Print_Queue.c b/Apps/Src/Print_Queue.c index b7de8bbb..bdc84c0f 100644 --- a/Apps/Src/Print_Queue.c +++ b/Apps/Src/Print_Queue.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ /** Print_Queue.c * Queue that holds all characters to be printed that Task_Print needs to send to UART. */ diff --git a/BSP/STM32F413/Src/retarget.c b/BSP/STM32F413/Src/retarget.c index 4ef8eb3a..228ef0c4 100644 --- a/BSP/STM32F413/Src/retarget.c +++ b/BSP/STM32F413/Src/retarget.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ #include "common.h" #include "sys/stat.h" diff --git a/Tasks/Inc/Tasks.h b/Tasks/Inc/Tasks.h index 6a0fdad6..9125f19d 100644 --- a/Tasks/Inc/Tasks.h +++ b/Tasks/Inc/Tasks.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ #ifndef TASKS_H #define TASKS_H diff --git a/Tasks/Src/Task_Init.c b/Tasks/Src/Task_Init.c index ccb42672..1a25589a 100644 --- a/Tasks/Src/Task_Init.c +++ b/Tasks/Src/Task_Init.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ #include "config.h" #include "Tasks.h" #include "CAN_Queue.h" diff --git a/Tasks/Src/Task_Print.c b/Tasks/Src/Task_Print.c index eace1b6d..b3db8f13 100644 --- a/Tasks/Src/Task_Print.c +++ b/Tasks/Src/Task_Print.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ #include "Tasks.h" #include "Print_Queue.h" #include "BSP_UART.h" diff --git a/Tasks/Src/Tasks.c b/Tasks/Src/Tasks.c index fe73a3f5..877ba68a 100644 --- a/Tasks/Src/Tasks.c +++ b/Tasks/Src/Tasks.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2022 UT Longhorn Racing Solar */ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ #include "common.h" #include "config.h" #include "Tasks.h" diff --git a/Tests/Test_Buffer_Print.c b/Tests/Test_Buffer_Print.c index 8e38f9af..395c50fa 100644 --- a/Tests/Test_Buffer_Print.c +++ b/Tests/Test_Buffer_Print.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2018-2023 UT Longhorn Racing Solar */ + #include "os.h" #include "Tasks.h" #include "stm32f4xx.h"