this repository aim to make the official ST DISCO F746NG demo from STM32Cube_FW_F7_V1.2.0 working on mbed.

Dependencies:   BSP_DISCO_F746NG_patch mbed-rtos mbed

Committer:
NirT
Date:
Mon Nov 02 23:38:08 2015 +0000
Revision:
0:c00e6c923941
Error: Incomplete type is not allowed in "patch/LwIP/src/include/lwip/dhcp.h", Line: 83, Col: 4; ; and more like this.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
NirT 0:c00e6c923941 1 /**
NirT 0:c00e6c923941 2 ******************************************************************************
NirT 0:c00e6c923941 3 * @file lcdconf.h
NirT 0:c00e6c923941 4 * @author MCD Application Team
NirT 0:c00e6c923941 5 * @version V1.1.0
NirT 0:c00e6c923941 6 * @date 21-September-2015
NirT 0:c00e6c923941 7 * @brief Header for LCDConf file
NirT 0:c00e6c923941 8 ******************************************************************************
NirT 0:c00e6c923941 9 * @attention
NirT 0:c00e6c923941 10 *
NirT 0:c00e6c923941 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
NirT 0:c00e6c923941 12 *
NirT 0:c00e6c923941 13 * Redistribution and use in source and binary forms, with or without modification,
NirT 0:c00e6c923941 14 * are permitted provided that the following conditions are met:
NirT 0:c00e6c923941 15 * 1. Redistributions of source code must retain the above copyright notice,
NirT 0:c00e6c923941 16 * this list of conditions and the following disclaimer.
NirT 0:c00e6c923941 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
NirT 0:c00e6c923941 18 * this list of conditions and the following disclaimer in the documentation
NirT 0:c00e6c923941 19 * and/or other materials provided with the distribution.
NirT 0:c00e6c923941 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
NirT 0:c00e6c923941 21 * may be used to endorse or promote products derived from this software
NirT 0:c00e6c923941 22 * without specific prior written permission.
NirT 0:c00e6c923941 23 *
NirT 0:c00e6c923941 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
NirT 0:c00e6c923941 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
NirT 0:c00e6c923941 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
NirT 0:c00e6c923941 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
NirT 0:c00e6c923941 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
NirT 0:c00e6c923941 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
NirT 0:c00e6c923941 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
NirT 0:c00e6c923941 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
NirT 0:c00e6c923941 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
NirT 0:c00e6c923941 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
NirT 0:c00e6c923941 34 *
NirT 0:c00e6c923941 35 ******************************************************************************
NirT 0:c00e6c923941 36 */
NirT 0:c00e6c923941 37
NirT 0:c00e6c923941 38 #include "main.h"
NirT 0:c00e6c923941 39 #include "GUI.h"
NirT 0:c00e6c923941 40 #include "GUIDRV_Lin.h"
NirT 0:c00e6c923941 41
NirT 0:c00e6c923941 42 #ifndef LCDCONF_H
NirT 0:c00e6c923941 43 #define LCDCONF_H
NirT 0:c00e6c923941 44
NirT 0:c00e6c923941 45
NirT 0:c00e6c923941 46 typedef struct
NirT 0:c00e6c923941 47 {
NirT 0:c00e6c923941 48 __IO int32_t address;
NirT 0:c00e6c923941 49 __IO int32_t pending_buffer;
NirT 0:c00e6c923941 50 __IO int32_t buffer_index;
NirT 0:c00e6c923941 51 int32_t xSize;
NirT 0:c00e6c923941 52 int32_t ySize;
NirT 0:c00e6c923941 53 int32_t BytesPerPixel;
NirT 0:c00e6c923941 54 LCD_API_COLOR_CONV *pColorConvAPI;
NirT 0:c00e6c923941 55 }
NirT 0:c00e6c923941 56 LCD_LayerPropTypedef;
NirT 0:c00e6c923941 57
NirT 0:c00e6c923941 58 #endif /* LCDCONF_H */
NirT 0:c00e6c923941 59
NirT 0:c00e6c923941 60 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/