1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-18 19:13:51 +01:00
Marian Buschsieweke cac44edec7
tree-wide: replace multiple empty lines with one
For each C source/header `$file`: `sed -e '/^$/N;/^\n$/D' -i $file`.
2025-05-21 22:51:04 +02:00

56 lines
1.5 KiB
C

/*
* Copyright (C) 2018 Koen Zandberg
* 2021 Francisco Molina
* 2023 Gunar Schorcht
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
#pragma once
#if !DOXYGEN /* hide from documentation */
/**
* @defgroup drivers_st7735 ST7735 display driver head files for backward compatibility
* @ingroup drivers_display
*
* @brief Header file for the ST7735 display controller for backward compatibility
*
* @{
*
* @file
*
* @author Koen Zandberg <koen@bergzand.net>
* @author Francisco Molina <francois-xavier.molina@inria.fr>
* @author Gunar Schorcht <gunar@schorcht.net>
*
* If a board definition already used the ST7735 driver, the `st7735.h`
* header file and `ST7735_*` macros are used. This file is kept for
* backward compatibility.
*/
#include "lcd.h"
#include "st77xx.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name ST7735 display rotation modes
* @{
*/
#define ST7735_ROTATION_VERT ST77XX_ROTATION_VERT /**< Vertical mode */
#define ST7735_ROTATION_VERT_FLIP ST77XX_ROTATION_VERT_FLIP /**< Flipped vertical */
#define ST7735_ROTATION_HORZ ST77XX_ROTATION_HORZ /**< Horizontal mode */
#define ST7735_ROTATION_HORZ_FLIP ST77XX_ROTATION_HORZ_FLIP /**< Horizontal flipped */
/** @} */
#ifdef __cplusplus
}
#endif
/** @} */
#endif /* !DOXYGEN */