From 812899797d6d8ea773bf960cd74680d20043c5a4 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 8 Dec 2020 18:19:13 +0100 Subject: add licensing information --- src/arch/msp430fr5969lp/driver/adc.cc | 5 +++++ src/arch/msp430fr5969lp/driver/counter.cc | 5 +++++ src/arch/msp430fr5969lp/driver/gpio.cc | 5 +++++ src/arch/msp430fr5969lp/driver/i2c.cc | 5 +++++ src/arch/msp430fr5969lp/driver/spi.cc | 5 +++++ src/arch/msp430fr5969lp/driver/stdin.cc | 5 +++++ src/arch/msp430fr5969lp/driver/stdout.cc | 5 +++++ src/arch/msp430fr5969lp/driver/timer.cc | 5 +++++ src/arch/msp430fr5969lp/driver/uptime.cc | 5 +++++ 9 files changed, 45 insertions(+) (limited to 'src/arch/msp430fr5969lp/driver') diff --git a/src/arch/msp430fr5969lp/driver/adc.cc b/src/arch/msp430fr5969lp/driver/adc.cc index 5a044a6..e5b3c27 100644 --- a/src/arch/msp430fr5969lp/driver/adc.cc +++ b/src/arch/msp430fr5969lp/driver/adc.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/adc.h" #include diff --git a/src/arch/msp430fr5969lp/driver/counter.cc b/src/arch/msp430fr5969lp/driver/counter.cc index 741b543..854061e 100644 --- a/src/arch/msp430fr5969lp/driver/counter.cc +++ b/src/arch/msp430fr5969lp/driver/counter.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "arch.h" #include "driver/counter.h" #include "driver/gpio.h" diff --git a/src/arch/msp430fr5969lp/driver/gpio.cc b/src/arch/msp430fr5969lp/driver/gpio.cc index 1403aed..148bcdb 100644 --- a/src/arch/msp430fr5969lp/driver/gpio.cc +++ b/src/arch/msp430fr5969lp/driver/gpio.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/gpio.h" GPIO gpio; diff --git a/src/arch/msp430fr5969lp/driver/i2c.cc b/src/arch/msp430fr5969lp/driver/i2c.cc index fe5b37b..a923f88 100644 --- a/src/arch/msp430fr5969lp/driver/i2c.cc +++ b/src/arch/msp430fr5969lp/driver/i2c.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/i2c.h" #include "arch.h" #include diff --git a/src/arch/msp430fr5969lp/driver/spi.cc b/src/arch/msp430fr5969lp/driver/spi.cc index f34a76b..4092e6e 100644 --- a/src/arch/msp430fr5969lp/driver/spi.cc +++ b/src/arch/msp430fr5969lp/driver/spi.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/spi.h" #include diff --git a/src/arch/msp430fr5969lp/driver/stdin.cc b/src/arch/msp430fr5969lp/driver/stdin.cc index cc6e586..033349d 100644 --- a/src/arch/msp430fr5969lp/driver/stdin.cc +++ b/src/arch/msp430fr5969lp/driver/stdin.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/stdin.h" #include diff --git a/src/arch/msp430fr5969lp/driver/stdout.cc b/src/arch/msp430fr5969lp/driver/stdout.cc index b3e8b4d..4b13515 100644 --- a/src/arch/msp430fr5969lp/driver/stdout.cc +++ b/src/arch/msp430fr5969lp/driver/stdout.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/stdout.h" #include diff --git a/src/arch/msp430fr5969lp/driver/timer.cc b/src/arch/msp430fr5969lp/driver/timer.cc index 4f2d6d1..a54b5c6 100644 --- a/src/arch/msp430fr5969lp/driver/timer.cc +++ b/src/arch/msp430fr5969lp/driver/timer.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/timer.h" Timer timer; diff --git a/src/arch/msp430fr5969lp/driver/uptime.cc b/src/arch/msp430fr5969lp/driver/uptime.cc index 05154f9..29d1bfc 100644 --- a/src/arch/msp430fr5969lp/driver/uptime.cc +++ b/src/arch/msp430fr5969lp/driver/uptime.cc @@ -1,3 +1,8 @@ +/* + * Copyright 2020 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ #include "driver/uptime.h" #include -- cgit v1.2.3