Ported example STemWin_HelloWorld from STM32Cube_FW_F7_V1.3.0 Just compiled succesfully, not tested on real board.

Dependencies:   BSP_DISCO_F746NG mbed

Committer:
icis4
Date:
Mon Jan 04 18:53:06 2016 +0000
Revision:
0:a53ccea9154d
Initial

Who changed what in which revision?

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