From: Yaraslau Liashchynski <yliashchyn...@luxoft.com> --- bsps/arm/stm32l4/dma/stm32l4_dma.c | 14 ++++++++++++++ bsps/arm/stm32l4/gpio/stm32l4_gpio.c | 14 ++++++++++++++ bsps/arm/stm32l4/headers.am | 3 +++ bsps/arm/stm32l4/include/bsp/irq.h | 14 +++++++------- bsps/arm/stm32l4/include/bsp/rcc.h | 15 ++++++++------- bsps/arm/stm32l4/include/bsp/stm32l4_dma.h | 15 +++++++++++---- bsps/arm/stm32l4/include/bsp/stm32l4_gpio.h | 15 +++++++++++---- bsps/arm/stm32l4/include/bsp/stm32l4_spi.h | 14 ++++++++++++++ bsps/arm/stm32l4/spi/stm32l4_spi.c | 14 ++++++++++++++ 9 files changed, 96 insertions(+), 22 deletions(-)
diff --git a/bsps/arm/stm32l4/dma/stm32l4_dma.c b/bsps/arm/stm32l4/dma/stm32l4_dma.c index d715e50..c9496af 100644 --- a/bsps/arm/stm32l4/dma/stm32l4_dma.c +++ b/bsps/arm/stm32l4/dma/stm32l4_dma.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + #include <stdint.h> #include <stdio.h> #include <string.h> diff --git a/bsps/arm/stm32l4/gpio/stm32l4_gpio.c b/bsps/arm/stm32l4/gpio/stm32l4_gpio.c index 223d010..f55522c 100644 --- a/bsps/arm/stm32l4/gpio/stm32l4_gpio.c +++ b/bsps/arm/stm32l4/gpio/stm32l4_gpio.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + #include <stdio.h> #include <stdint.h> #include <stdarg.h> diff --git a/bsps/arm/stm32l4/headers.am b/bsps/arm/stm32l4/headers.am index 05586ce..d549e73 100644 --- a/bsps/arm/stm32l4/headers.am +++ b/bsps/arm/stm32l4/headers.am @@ -9,4 +9,7 @@ include_bspdir = $(includedir)/bsp include_bsp_HEADERS = include_bsp_HEADERS += ../../../../../../bsps/arm/stm32l4/include/bsp/irq.h include_bsp_HEADERS += ../../../../../../bsps/arm/stm32l4/include/bsp/rcc.h +include_bsp_HEADERS += ../../../../../../bsps/arm/stm32l4/include/bsp/stm32l4_dma.h +include_bsp_HEADERS += ../../../../../../bsps/arm/stm32l4/include/bsp/stm32l4_gpio.h +include_bsp_HEADERS += ../../../../../../bsps/arm/stm32l4/include/bsp/stm32l4_spi.h include_bsp_HEADERS += ../../../../../../bsps/arm/stm32l4/include/bsp/stm32l4xx.h diff --git a/bsps/arm/stm32l4/include/bsp/irq.h b/bsps/arm/stm32l4/include/bsp/irq.h index c2cf19a..868be6b 100644 --- a/bsps/arm/stm32l4/include/bsp/irq.h +++ b/bsps/arm/stm32l4/include/bsp/irq.h @@ -1,11 +1,11 @@ -/** - * @file irq.h - * @ingroup stm32l4_interrupt - * @brief Interrupt definitions. - */ - /* - * Copyright (c) 2018 Yaroslav Leshchinsky. All rights reserved. + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/stm32l4/include/bsp/rcc.h b/bsps/arm/stm32l4/include/bsp/rcc.h index ce5d43c..273db87 100644 --- a/bsps/arm/stm32l4/include/bsp/rcc.h +++ b/bsps/arm/stm32l4/include/bsp/rcc.h @@ -1,17 +1,18 @@ -/** - * @file rcc.h - * @ingroup stm32l4_rcc - * @brief RCC definitions. - */ - /* - * Copyright (c) 2018 Yaroslav Leshchinsky. All rights reserved. + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ + #ifndef LIBBSP_ARM_STM32L4_RCC_H #define LIBBSP_ARM_STM32L4_RCC_H diff --git a/bsps/arm/stm32l4/include/bsp/stm32l4_dma.h b/bsps/arm/stm32l4/include/bsp/stm32l4_dma.h index 34330c0..b86617c 100644 --- a/bsps/arm/stm32l4/include/bsp/stm32l4_dma.h +++ b/bsps/arm/stm32l4/include/bsp/stm32l4_dma.h @@ -1,8 +1,15 @@ -/** - * stm32l4_dma.h +/* + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. * - * Created on: Jan 25, 2016 - * Author: leschinskii + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #ifndef SRC_DRIVERS_INCLUDE_STM32L4_DMA_H_ diff --git a/bsps/arm/stm32l4/include/bsp/stm32l4_gpio.h b/bsps/arm/stm32l4/include/bsp/stm32l4_gpio.h index ee5e2ae..24ee4a6 100644 --- a/bsps/arm/stm32l4/include/bsp/stm32l4_gpio.h +++ b/bsps/arm/stm32l4/include/bsp/stm32l4_gpio.h @@ -1,8 +1,15 @@ -/** - * stm32l4_gpio.h +/* + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. * - * Created on: Jan 15, 2016 - * Author: leschinskii + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #ifndef SRC_DRIVERS_INCLUDE_STM32L4_GPIO_H_ diff --git a/bsps/arm/stm32l4/include/bsp/stm32l4_spi.h b/bsps/arm/stm32l4/include/bsp/stm32l4_spi.h index 771b1cf..128ba79 100644 --- a/bsps/arm/stm32l4/include/bsp/stm32l4_spi.h +++ b/bsps/arm/stm32l4/include/bsp/stm32l4_spi.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + #ifndef SRC_DRIVERS_INCLUDE_STM32L4_SPI_H_ #define SRC_DRIVERS_INCLUDE_STM32L4_SPI_H_ diff --git a/bsps/arm/stm32l4/spi/stm32l4_spi.c b/bsps/arm/stm32l4/spi/stm32l4_spi.c index 8bad729..4da049b 100644 --- a/bsps/arm/stm32l4/spi/stm32l4_spi.c +++ b/bsps/arm/stm32l4/spi/stm32l4_spi.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2016 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * <i...@embedded-brains.de> + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + #include <stdio.h> #include <stdint.h> #include <string.h> -- 2.7.4 _______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel