From c3be39b4e525474e9a9fcbe5945cbbb3e2c1bd3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sat, 15 Feb 2020 22:09:55 +0100 Subject: [PATCH] Add license header to all files --- stm-firmware/adc-meas.c | 22 +++++++++++- stm-firmware/calibration.c | 6 ++-- stm-firmware/create-c-file-with-header.py | 36 ++++++++++--------- stm-firmware/create-temp-lookup-table.py | 36 ++++++++++--------- stm-firmware/digio.c | 20 +++++++++++ .../include/helper-macros/helper-macros.h | 20 +++++++++++ .../include/reflow-controller/adc-meas.h | 20 +++++++++++ .../include/reflow-controller/calibration.h | 5 +-- .../include/reflow-controller/digio.h | 20 +++++++++++ .../include/reflow-controller/shell.h | 20 +++++++++++ .../include/reflow-controller/systick.h | 20 +++++++++++ .../reflow-controller/temp-converter-data.h | 5 +-- .../reflow-controller/temp-converter.h | 5 +-- .../include/stm-periph/clock-enable-manager.h | 20 +++++++++++ .../include/stm-periph/dma-ring-buffer.h | 20 +++++++++++ .../include/stm-periph/stm32-gpio-macros.h | 20 +++++++++++ stm-firmware/include/stm-periph/uart.h | 20 +++++++++++ stm-firmware/include/stm-periph/unique-id.h | 20 +++++++++++ stm-firmware/main.c | 20 +++++++++++ stm-firmware/shell.c | 20 +++++++++++ .../stm-periph/clock-enable-manager.c | 20 +++++++++++ stm-firmware/stm-periph/dma-ring-buffer.c | 20 +++++++++++ stm-firmware/stm-periph/uart.c | 20 +++++++++++ stm-firmware/stm-periph/unique-id.c | 20 +++++++++++ stm-firmware/syscalls.c | 20 +++++++++++ stm-firmware/systick.c | 20 +++++++++++ stm-firmware/temp-converter.c | 5 +-- 27 files changed, 455 insertions(+), 45 deletions(-) diff --git a/stm-firmware/adc-meas.c b/stm-firmware/adc-meas.c index 229243c..b93a523 100644 --- a/stm-firmware/adc-meas.c +++ b/stm-firmware/adc-meas.c @@ -1,4 +1,24 @@ -#include +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + +#include #include #include #include diff --git a/stm-firmware/calibration.c b/stm-firmware/calibration.c index 1b570ed..ae52c20 100644 --- a/stm-firmware/calibration.c +++ b/stm-firmware/calibration.c @@ -2,7 +2,7 @@ * * Copyright (C) 2020 Mario Hüttel * - * This file is part of the reflow Oven Controller Project. + * This file is part of the Reflow Oven Controller Project. * * The reflow oven controller is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -14,9 +14,11 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . + * along with the reflow oven controller project. + * If not, see . */ + #include #include #include diff --git a/stm-firmware/create-c-file-with-header.py b/stm-firmware/create-c-file-with-header.py index f8bc191..85772af 100755 --- a/stm-firmware/create-c-file-with-header.py +++ b/stm-firmware/create-c-file-with-header.py @@ -4,23 +4,25 @@ import os import sys license_header = """/* Reflow Oven Controller - * - * Copyright (C) 2020 Mario Hüttel - * - * This file is part of the reflow Oven Controller Project. - * - * The reflow oven controller is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * GDSII-Converter is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . - */ +* +* Copyright (C) 2020 Mario Hüttel +* +* This file is part of the Reflow Oven Controller Project. +* +* The reflow oven controller is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License version 2 as +* published by the Free Software Foundation. +* +* GDSII-Converter is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with the reflow oven controller project. +* If not, see . +*/ + """ project_dir = os.path.dirname(os.path.realpath(__file__)) diff --git a/stm-firmware/create-temp-lookup-table.py b/stm-firmware/create-temp-lookup-table.py index 5dc6971..34f89b7 100755 --- a/stm-firmware/create-temp-lookup-table.py +++ b/stm-firmware/create-temp-lookup-table.py @@ -5,23 +5,25 @@ import sys import numpy as np license_header = """/* Reflow Oven Controller - * - * Copyright (C) 2020 Mario Hüttel - * - * This file is part of the reflow Oven Controller Project. - * - * The reflow oven controller is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * GDSII-Converter is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . - */ +* +* Copyright (C) 2020 Mario Hüttel +* +* This file is part of the Reflow Oven Controller Project. +* +* The reflow oven controller is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License version 2 as +* published by the Free Software Foundation. +* +* GDSII-Converter is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with the reflow oven controller project. +* If not, see . +*/ + """ hfile="temp-converter-data.h" diff --git a/stm-firmware/digio.c b/stm-firmware/digio.c index 048c244..d65333a 100644 --- a/stm-firmware/digio.c +++ b/stm-firmware/digio.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/include/helper-macros/helper-macros.h b/stm-firmware/include/helper-macros/helper-macros.h index 9dc9ac9..d359e03 100644 --- a/stm-firmware/include/helper-macros/helper-macros.h +++ b/stm-firmware/include/helper-macros/helper-macros.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __HELPER_MACROS_H__ #define __HELPER_MACROS_H__ diff --git a/stm-firmware/include/reflow-controller/adc-meas.h b/stm-firmware/include/reflow-controller/adc-meas.h index db42c02..7be7e4d 100644 --- a/stm-firmware/include/reflow-controller/adc-meas.h +++ b/stm-firmware/include/reflow-controller/adc-meas.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __ADCMEAS_H__ #define __ADCMEAS_H__ diff --git a/stm-firmware/include/reflow-controller/calibration.h b/stm-firmware/include/reflow-controller/calibration.h index 0d55a9f..8f007e0 100644 --- a/stm-firmware/include/reflow-controller/calibration.h +++ b/stm-firmware/include/reflow-controller/calibration.h @@ -2,7 +2,7 @@ * * Copyright (C) 2020 Mario Hüttel * - * This file is part of the reflow Oven Controller Project. + * This file is part of the Reflow Oven Controller Project. * * The reflow oven controller is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -14,7 +14,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . + * along with the reflow oven controller project. + * If not, see . */ #ifndef __CALIBRATION_H__ diff --git a/stm-firmware/include/reflow-controller/digio.h b/stm-firmware/include/reflow-controller/digio.h index cd68f3f..8f665da 100644 --- a/stm-firmware/include/reflow-controller/digio.h +++ b/stm-firmware/include/reflow-controller/digio.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __DIGIO_H__ #define __DIGIO_H__ diff --git a/stm-firmware/include/reflow-controller/shell.h b/stm-firmware/include/reflow-controller/shell.h index e6e872d..a93c9aa 100644 --- a/stm-firmware/include/reflow-controller/shell.h +++ b/stm-firmware/include/reflow-controller/shell.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __SHELL_H__ #define __SHELL_H__ diff --git a/stm-firmware/include/reflow-controller/systick.h b/stm-firmware/include/reflow-controller/systick.h index 76d1691..29c2281 100644 --- a/stm-firmware/include/reflow-controller/systick.h +++ b/stm-firmware/include/reflow-controller/systick.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __SYSTICK_H__ #define __SYSTICK_H__ diff --git a/stm-firmware/include/reflow-controller/temp-converter-data.h b/stm-firmware/include/reflow-controller/temp-converter-data.h index 3faf687..d4517e4 100644 --- a/stm-firmware/include/reflow-controller/temp-converter-data.h +++ b/stm-firmware/include/reflow-controller/temp-converter-data.h @@ -2,7 +2,7 @@ * * Copyright (C) 2020 Mario Hüttel * - * This file is part of the reflow Oven Controller Project. + * This file is part of the Reflow Oven Controller Project. * * The reflow oven controller is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -14,7 +14,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . + * along with the reflow oven controller project. + * If not, see . */ #ifndef __TEMP_CONVERTER_DATA_H__ diff --git a/stm-firmware/include/reflow-controller/temp-converter.h b/stm-firmware/include/reflow-controller/temp-converter.h index a6a27e2..febd392 100644 --- a/stm-firmware/include/reflow-controller/temp-converter.h +++ b/stm-firmware/include/reflow-controller/temp-converter.h @@ -2,7 +2,7 @@ * * Copyright (C) 2020 Mario Hüttel * - * This file is part of the reflow Oven Controller Project. + * This file is part of the Reflow Oven Controller Project. * * The reflow oven controller is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -14,7 +14,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . + * along with the reflow oven controller project. + * If not, see . */ #ifndef __TEMP_CONVERTER_H__ diff --git a/stm-firmware/include/stm-periph/clock-enable-manager.h b/stm-firmware/include/stm-periph/clock-enable-manager.h index bf78dca..6725639 100644 --- a/stm-firmware/include/stm-periph/clock-enable-manager.h +++ b/stm-firmware/include/stm-periph/clock-enable-manager.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __CLOCK_ENABLE_MANAGER_H__ #define __CLOCK_ENABLE_MANAGER_H__ diff --git a/stm-firmware/include/stm-periph/dma-ring-buffer.h b/stm-firmware/include/stm-periph/dma-ring-buffer.h index 4693bf3..3319a92 100644 --- a/stm-firmware/include/stm-periph/dma-ring-buffer.h +++ b/stm-firmware/include/stm-periph/dma-ring-buffer.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __DMA_RING_BUFFER_H__ #define __DMA_RING_BUFFER_H__ diff --git a/stm-firmware/include/stm-periph/stm32-gpio-macros.h b/stm-firmware/include/stm-periph/stm32-gpio-macros.h index 3164286..438ba03 100644 --- a/stm-firmware/include/stm-periph/stm32-gpio-macros.h +++ b/stm-firmware/include/stm-periph/stm32-gpio-macros.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __STM32GPIOMACROS_H__ #define __STM32GPIOMACROS_H__ diff --git a/stm-firmware/include/stm-periph/uart.h b/stm-firmware/include/stm-periph/uart.h index a221bf5..79c012a 100644 --- a/stm-firmware/include/stm-periph/uart.h +++ b/stm-firmware/include/stm-periph/uart.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include diff --git a/stm-firmware/include/stm-periph/unique-id.h b/stm-firmware/include/stm-periph/unique-id.h index e592340..974a1e5 100644 --- a/stm-firmware/include/stm-periph/unique-id.h +++ b/stm-firmware/include/stm-periph/unique-id.h @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #ifndef __UNIQUE_ID_H__ #define __UNIQUE_ID_H__ diff --git a/stm-firmware/main.c b/stm-firmware/main.c index 7795793..7d8d939 100644 --- a/stm-firmware/main.c +++ b/stm-firmware/main.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include /* #include */ diff --git a/stm-firmware/shell.c b/stm-firmware/shell.c index bbfbed6..58a268e 100644 --- a/stm-firmware/shell.c +++ b/stm-firmware/shell.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/stm-periph/clock-enable-manager.c b/stm-firmware/stm-periph/clock-enable-manager.c index f13d629..e47dfa8 100644 --- a/stm-firmware/stm-periph/clock-enable-manager.c +++ b/stm-firmware/stm-periph/clock-enable-manager.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/stm-periph/dma-ring-buffer.c b/stm-firmware/stm-periph/dma-ring-buffer.c index 289b587..b71639c 100644 --- a/stm-firmware/stm-periph/dma-ring-buffer.c +++ b/stm-firmware/stm-periph/dma-ring-buffer.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/stm-periph/uart.c b/stm-firmware/stm-periph/uart.c index ff2dd5b..743275d 100644 --- a/stm-firmware/stm-periph/uart.c +++ b/stm-firmware/stm-periph/uart.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/stm-periph/unique-id.c b/stm-firmware/stm-periph/unique-id.c index f46b587..457e7d9 100644 --- a/stm-firmware/stm-periph/unique-id.c +++ b/stm-firmware/stm-periph/unique-id.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #define LOW_WORD_ADDR (0x1FFF7A10UL) diff --git a/stm-firmware/syscalls.c b/stm-firmware/syscalls.c index 876fc20..94d0cd7 100644 --- a/stm-firmware/syscalls.c +++ b/stm-firmware/syscalls.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/systick.c b/stm-firmware/systick.c index 6e6180c..c8ee9cb 100644 --- a/stm-firmware/systick.c +++ b/stm-firmware/systick.c @@ -1,3 +1,23 @@ +/* Reflow Oven Controller + * + * Copyright (C) 2020 Mario Hüttel + * + * This file is part of the Reflow Oven Controller Project. + * + * The reflow oven controller is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * GDSII-Converter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the reflow oven controller project. + * If not, see . + */ + #include #include #include diff --git a/stm-firmware/temp-converter.c b/stm-firmware/temp-converter.c index b930cd4..e7db1c4 100644 --- a/stm-firmware/temp-converter.c +++ b/stm-firmware/temp-converter.c @@ -2,7 +2,7 @@ * * Copyright (C) 2020 Mario Hüttel * - * This file is part of the reflow Oven Controller Project. + * This file is part of the Reflow Oven Controller Project. * * The reflow oven controller is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -14,7 +14,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with GDSII-Converter. If not, see . + * along with the reflow oven controller project. + * If not, see . */ #include