bsps/shared: Manual file header clean up

Updates #4625.
This commit is contained in:
Christian Mauderer
2022-03-02 11:35:40 +01:00
parent 98e43e833b
commit 4a85ce8d6a
7 changed files with 87 additions and 125 deletions

View File

@@ -1,22 +1,16 @@
/*===============================================================*\ /*
| Project: display driver for HCMS29xx | * Display driver for HCMS29xx.
+-----------------------------------------------------------------+ *
| File: disp_fonts.h | * This file declares general data structures for font management.
+-----------------------------------------------------------------+ */
| Copyright (c) 2008 |
| embedded brains GmbH | /*
| Obere Lagerstr. 30 | * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
| 82178 Puchheim | *
| Germany | * The license and distribution terms for this file may be
| rtems@embedded-brains.de | * found in the file LICENSE in this distribution or at
+-----------------------------------------------------------------+ * http://www.rtems.org/license/LICENSE.
| 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. |
| |
+-----------------------------------------------------------------+
| This file declares general data structures for font management |
\*===============================================================*/
#ifndef DISP_FONTS_H #ifndef DISP_FONTS_H
#define DISP_FONTS_H #define DISP_FONTS_H

View File

@@ -1,22 +1,17 @@
/*===============================================================*\ /*
| Project: display driver for HCMS29xx | * Display driver for HCMS29xx.
+-----------------------------------------------------------------+ *
| File: disp_hcms29xx.c | * This file contains the SPI based driver for a HCMS29xx 4 digit
+-----------------------------------------------------------------+ * alphanumeric LED display.
| Copyright (c) 2008 | */
| embedded brains GmbH |
| Obere Lagerstr. 30 | /*
| 82178 Puchheim | * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
| Germany | *
| rtems@embedded-brains.de | * The license and distribution terms for this file may be
+-----------------------------------------------------------------+ * found in the file LICENSE in this distribution or at
| The license and distribution terms for this file may be | * http://www.rtems.org/license/LICENSE.
| found in the file LICENSE in this distribution or at | */
| http://www.rtems.org/license/LICENSE. |
+-----------------------------------------------------------------+
| this file contains the SPI based driver for a HCMS29xx 4 digit |
| alphanumeric LED display |
\*===============================================================*/
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View File

@@ -1,21 +1,16 @@
/*===============================================================*\ /*
| Project: display driver for HCMS29xx | * Display driver for HCMS29xx.
+-----------------------------------------------------------------+ *
| File: font_hcms29xx.c | * This file defines the 5x7 bit font used in disp_hcms29xx.
+-----------------------------------------------------------------+ */
| Copyright (c) 2008 |
| embedded brains GmbH | /*
| Obere Lagerstr. 30 | * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
| 82178 Puchheim | *
| Germany | * The license and distribution terms for this file may be
| rtems@embedded-brains.de | * found in the file LICENSE in this distribution or at
+-----------------------------------------------------------------+ * http://www.rtems.org/license/LICENSE.
| 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. |
+-----------------------------------------------------------------+
| This file defines the 5x7 bit font used in disp_hcms29xx |
\*===============================================================*/
#include <stddef.h> #include <stddef.h>
#include "disp_fonts.h" #include "disp_fonts.h"

View File

@@ -1,21 +1,16 @@
/*===============================================================*\ /*
| Project: display driver for HCMS29xx | * Display driver for HCMS29xx.
+-----------------------------------------------------------------+ *
| File: font_hcms29xx.h | * This file declares the 5x7 bit font used in disp_hcms29xx.
+-----------------------------------------------------------------+ */
| Copyright (c) 2008 |
| embedded brains GmbH | /*
| Obere Lagerstr. 30 | * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
| 82178 Puchheim | *
| Germany | * The license and distribution terms for this file may be
| rtems@embedded-brains.de | * found in the file LICENSE in this distribution or at
+-----------------------------------------------------------------+ * http://www.rtems.org/license/LICENSE.
| 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. |
+-----------------------------------------------------------------+
| This file declares the 5x7 bit font used in disp_hcms29xx |
\*===============================================================*/
#ifndef FONT_HCMS29XX_H #ifndef FONT_HCMS29XX_H
#define FONT_HCMS29XX_H #define FONT_HCMS29XX_H

View File

@@ -1,20 +1,14 @@
/*===============================================================*\ /*
| Project: SPI driver for M25P40 like spi flash device | * SPI driver for M25P40 like spi flash device.
+-----------------------------------------------------------------+ */
| Copyright (c) 2007 |
| embedded brains GmbH | /*
| Obere Lagerstr. 30 | * Copyright (c) 2007 embedded brains GmbH. All rights reserved.
| 82178 Puchheim | *
| Germany | * The license and distribution terms for this file may be
| rtems@embedded-brains.de | * found in the file LICENSE in this distribution or at
+-----------------------------------------------------------------+ * http://www.rtems.org/license/LICENSE.
| 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 <rtems.h> #include <rtems.h>
#include <rtems/libi2c.h> #include <rtems/libi2c.h>

View File

@@ -1,20 +1,14 @@
/*===============================================================*\ /*
| Project: SPI driver for FM25L256 like spi fram device | * SPI driver for FM25L256 like spi fram device.
+-----------------------------------------------------------------+ */
| Copyright (c) 2008 |
| embedded brains GmbH | /*
| Obere Lagerstr. 30 | * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
| 82178 Puchheim | *
| Germany | * The license and distribution terms for this file may be
| rtems@embedded-brains.de | * found in the file LICENSE in this distribution or at
+-----------------------------------------------------------------+ * http://www.rtems.org/license/LICENSE.
| 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 <rtems.h> #include <rtems.h>
#include <rtems/libi2c.h> #include <rtems/libi2c.h>

View File

@@ -1,20 +1,15 @@
/*===============================================================*\ /*
| Project: SPI driver for spi memory devices | * SPI driver for spi memory devices.
+-----------------------------------------------------------------+ */
| Copyright (c) 2008 |
| embedded brains GmbH | /*
| Obere Lagerstr. 30 | * Copyright (c) 2008 embedded brains GmbH. All rights reserved.
| 82178 Puchheim | *
| Germany | * The license and distribution terms for this file may be
| rtems@embedded-brains.de | * found in the file LICENSE in this distribution or at
+-----------------------------------------------------------------+ * http://www.rtems.org/license/LICENSE.
| 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. |
| |
+-----------------------------------------------------------------+
\*===============================================================*/
/* /*
* FIXME: currently, this driver only supports read/write accesses * FIXME: currently, this driver only supports read/write accesses
* erase accesses are to be completed * erase accesses are to be completed