lcd_fmc.h
1 /*
2  * SPDX-FileCopyrightText: 2023 Gunar Schorcht
3  * SPDX-License-Identifier: LGPL-2.1-only
4  */
5 
6 #pragma once
7 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
30 #if DOXYGEN
31 #define LCD_FMC_NUMOF 1
32 #endif
33 
45 typedef struct {
47  uint32_t cmd_offset;
48  uint32_t data_offset;
50 
51 #ifdef __cplusplus
52 }
53 #endif
54 
Bank configuration structure.
Definition: cpu_fmc.h:356
Descriptor of the FMC bank used for a LCD.
Definition: lcd_fmc.h:45
uint32_t data_offset
offset to the bank address used for data
Definition: lcd_fmc.h:48
uint32_t cmd_offset
offset to the bank address used for commands
Definition: lcd_fmc.h:47
const fmc_bank_conf_t * bank
FMC bank config used for the LCD.
Definition: lcd_fmc.h:46