2023-07-14 00:14:24 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Koen Zandberg
|
2023-07-14 00:26:36 +02:00
|
|
|
* 2023 Gunar Schorcht
|
2023-07-14 00:14:24 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup drivers_st77xx
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2023-07-14 00:26:36 +02:00
|
|
|
* @brief Internal definitions that are common for all ST77xx controllers
|
2023-07-14 00:14:24 +02:00
|
|
|
*
|
|
|
|
* @author Koen Zandberg <koen@bergzand.net>
|
2023-07-14 00:26:36 +02:00
|
|
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
2023-07-14 00:14:24 +02:00
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ST77XX_INTERNAL_H
|
|
|
|
#define ST77XX_INTERNAL_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "lcd_internal.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ST77XX_INTERNAL_H */
|