From ddd5d5a9183b020bcd0c276ac925d811d6708f67 Mon Sep 17 00:00:00 2001 From: Piotr Esden-Tempski Date: Thu, 15 Jan 2015 17:06:39 -0800 Subject: [PATCH] [copyright] Updated copyright credits on some newly added files. We need to go through all the examples and make sure we credit them accordingly. --- examples/stm32/f4/stm32f4-discovery/random/random.c | 3 +++ .../f4/stm32f429i-discovery/adc-dac-printf/adc-dac-printf.c | 1 + examples/stm32/f4/stm32f429i-discovery/button/button.c | 2 +- examples/stm32/f4/stm32f429i-discovery/dac-dma/dac-dma.c | 1 + examples/stm32/f4/stm32f429i-discovery/fancyblink/fancyblink.c | 1 + examples/stm32/f4/stm32f429i-discovery/mandelbrot/mandel.c | 1 + examples/stm32/f4/stm32f429i-discovery/miniblink/miniblink.c | 1 + examples/stm32/f4/stm32f429i-discovery/random/random.c | 3 +++ examples/stm32/f4/stm32f429i-discovery/tick_blink/tick_blink.c | 1 + examples/stm32/f4/stm32f429i-discovery/usart/usart.c | 1 + examples/stm32/f4/stm32f429i-discovery/usart_irq/usart_irq.c | 2 +- examples/stm32/f4/stm32f429i-discovery/usb_cdcacm/cdcacm.c | 1 + examples/stm32/f4/stm32f429i-discovery/usb_midi/usbmidi.c | 1 + examples/stm32/f4/stm32f429i-discovery/usb_msc/msc.c | 1 + 14 files changed, 18 insertions(+), 2 deletions(-) diff --git a/examples/stm32/f4/stm32f4-discovery/random/random.c b/examples/stm32/f4/stm32f4-discovery/random/random.c index b27116f..5a74101 100644 --- a/examples/stm32/f4/stm32f4-discovery/random/random.c +++ b/examples/stm32/f4/stm32f4-discovery/random/random.c @@ -1,6 +1,9 @@ /* * This file is part of the libopencm3 project. * + * Copyright (C) 2013 Frantisek Burian + * Copyright (C) 2013 Piotr Esden-Tempski + * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/examples/stm32/f4/stm32f429i-discovery/adc-dac-printf/adc-dac-printf.c b/examples/stm32/f4/stm32f429i-discovery/adc-dac-printf/adc-dac-printf.c index ba0b328..526d768 100644 --- a/examples/stm32/f4/stm32f429i-discovery/adc-dac-printf/adc-dac-printf.c +++ b/examples/stm32/f4/stm32f429i-discovery/adc-dac-printf/adc-dac-printf.c @@ -2,6 +2,7 @@ * This file is part of the libopencm3 project. * * Copyright (C) 2014 Karl Palsson + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/button/button.c b/examples/stm32/f4/stm32f429i-discovery/button/button.c index 3178f1d..791e04a 100644 --- a/examples/stm32/f4/stm32f429i-discovery/button/button.c +++ b/examples/stm32/f4/stm32f429i-discovery/button/button.c @@ -2,7 +2,7 @@ * This file is part of the libopencm3 project. * * Copyright (C) 2009 Uwe Hermann , - * Copyright (C) 2010 Piotr Esden-Tempski + * Copyright (C) 2010-2015 Piotr Esden-Tempski * Copyright (C) 2011 Stephen Caudle * * This library is free software: you can redistribute it and/or modify diff --git a/examples/stm32/f4/stm32f429i-discovery/dac-dma/dac-dma.c b/examples/stm32/f4/stm32f429i-discovery/dac-dma/dac-dma.c index 5477a18..4ad0f84 100644 --- a/examples/stm32/f4/stm32f429i-discovery/dac-dma/dac-dma.c +++ b/examples/stm32/f4/stm32f429i-discovery/dac-dma/dac-dma.c @@ -2,6 +2,7 @@ * This file is part of the libopencm3 project. * * Copyright (C) 2014 Ken Sarkies + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/fancyblink/fancyblink.c b/examples/stm32/f4/stm32f429i-discovery/fancyblink/fancyblink.c index fc48484..ee461b1 100644 --- a/examples/stm32/f4/stm32f429i-discovery/fancyblink/fancyblink.c +++ b/examples/stm32/f4/stm32f429i-discovery/fancyblink/fancyblink.c @@ -4,6 +4,7 @@ * Copyright (C) 2009 Uwe Hermann * Copyright (C) 2011 Damjan Marion * Copyright (C) 2011 Mark Panajotovic + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/mandelbrot/mandel.c b/examples/stm32/f4/stm32f429i-discovery/mandelbrot/mandel.c index fd114ec..7ef9900 100644 --- a/examples/stm32/f4/stm32f429i-discovery/mandelbrot/mandel.c +++ b/examples/stm32/f4/stm32f429i-discovery/mandelbrot/mandel.c @@ -4,6 +4,7 @@ * Copyright (C) 2009 Uwe Hermann * Copyright (C) 2011 Stephen Caudle * Copyright (C) 2012 Daniel Serpell + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/miniblink/miniblink.c b/examples/stm32/f4/stm32f429i-discovery/miniblink/miniblink.c index a92b1a7..b40b1b5 100644 --- a/examples/stm32/f4/stm32f429i-discovery/miniblink/miniblink.c +++ b/examples/stm32/f4/stm32f429i-discovery/miniblink/miniblink.c @@ -3,6 +3,7 @@ * * Copyright (C) 2009 Uwe Hermann * Copyright (C) 2011 Stephen Caudle + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/random/random.c b/examples/stm32/f4/stm32f429i-discovery/random/random.c index 8c0b2c7..4043da8 100644 --- a/examples/stm32/f4/stm32f429i-discovery/random/random.c +++ b/examples/stm32/f4/stm32f429i-discovery/random/random.c @@ -1,6 +1,9 @@ /* * This file is part of the libopencm3 project. * + * Copyright (C) 2013 Frantisek Burian + * Copyright (C) 2013-2015 Piotr Esden-Tempski + * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/examples/stm32/f4/stm32f429i-discovery/tick_blink/tick_blink.c b/examples/stm32/f4/stm32f429i-discovery/tick_blink/tick_blink.c index a032a08..bb0f061 100644 --- a/examples/stm32/f4/stm32f429i-discovery/tick_blink/tick_blink.c +++ b/examples/stm32/f4/stm32f429i-discovery/tick_blink/tick_blink.c @@ -5,6 +5,7 @@ * Copyright (C) 2011 Damjan Marion * Copyright (C) 2011 Mark Panajotovic * Copyright (C) 2013 Chuck McManis + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/usart/usart.c b/examples/stm32/f4/stm32f429i-discovery/usart/usart.c index 9e84236..4a44eae 100644 --- a/examples/stm32/f4/stm32f429i-discovery/usart/usart.c +++ b/examples/stm32/f4/stm32f429i-discovery/usart/usart.c @@ -3,6 +3,7 @@ * * Copyright (C) 2009 Uwe Hermann * Copyright (C) 2011 Stephen Caudle + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/usart_irq/usart_irq.c b/examples/stm32/f4/stm32f429i-discovery/usart_irq/usart_irq.c index aa98dfd..dba136b 100644 --- a/examples/stm32/f4/stm32f429i-discovery/usart_irq/usart_irq.c +++ b/examples/stm32/f4/stm32f429i-discovery/usart_irq/usart_irq.c @@ -3,7 +3,7 @@ * * Copyright (C) 2009 Uwe Hermann * Copyright (C) 2011 Stephen Caudle - * Copyright (C) 2013 Piotr Esden-Tempski + * Copyright (C) 2013-2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/usb_cdcacm/cdcacm.c b/examples/stm32/f4/stm32f429i-discovery/usb_cdcacm/cdcacm.c index 5cc2352..8c5222a 100644 --- a/examples/stm32/f4/stm32f429i-discovery/usb_cdcacm/cdcacm.c +++ b/examples/stm32/f4/stm32f429i-discovery/usb_cdcacm/cdcacm.c @@ -2,6 +2,7 @@ * This file is part of the libopencm3 project. * * Copyright (C) 2010 Gareth McMullin + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/usb_midi/usbmidi.c b/examples/stm32/f4/stm32f429i-discovery/usb_midi/usbmidi.c index 0a4b84a..e863b5c 100644 --- a/examples/stm32/f4/stm32f429i-discovery/usb_midi/usbmidi.c +++ b/examples/stm32/f4/stm32f429i-discovery/usb_midi/usbmidi.c @@ -2,6 +2,7 @@ * This file is part of the libopencm3 project. * * Copyright (C) 2014 Daniel Thompson + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/examples/stm32/f4/stm32f429i-discovery/usb_msc/msc.c b/examples/stm32/f4/stm32f429i-discovery/usb_msc/msc.c index 2158bd6..706841d 100644 --- a/examples/stm32/f4/stm32f429i-discovery/usb_msc/msc.c +++ b/examples/stm32/f4/stm32f429i-discovery/usb_msc/msc.c @@ -3,6 +3,7 @@ * * Copyright (C) 2013 Weston Schmidt * Copyright (C) 2013 Pavol Rusnak + * Copyright (C) 2015 Piotr Esden-Tempski * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by