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 * SEGGER Microcontroller GmbH & Co. KG *
NirT 0:c00e6c923941 3 * Solutions for real time microcontroller applications *
NirT 0:c00e6c923941 4 **********************************************************************
NirT 0:c00e6c923941 5 * *
NirT 0:c00e6c923941 6 * (c) 1996 - 2015 SEGGER Microcontroller GmbH & Co. KG *
NirT 0:c00e6c923941 7 * *
NirT 0:c00e6c923941 8 * Internet: www.segger.com Support: support@segger.com *
NirT 0:c00e6c923941 9 * *
NirT 0:c00e6c923941 10 **********************************************************************
NirT 0:c00e6c923941 11
NirT 0:c00e6c923941 12 ** emWin V5.28 - Graphical user interface for embedded applications **
NirT 0:c00e6c923941 13 All Intellectual Property rights in the Software belongs to SEGGER.
NirT 0:c00e6c923941 14 emWin is protected by international copyright laws. Knowledge of the
NirT 0:c00e6c923941 15 source code may not be used to write a similar product. This file may
NirT 0:c00e6c923941 16 only be used in accordance with the following terms:
NirT 0:c00e6c923941 17
NirT 0:c00e6c923941 18 The software has been licensed to STMicroelectronics International
NirT 0:c00e6c923941 19 N.V. a Dutch company with a Swiss branch and its headquarters in Plan-
NirT 0:c00e6c923941 20 les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the
NirT 0:c00e6c923941 21 purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_
NirT 0:c00e6c923941 22 troller products commercialized by Licensee only, sublicensed and dis_
NirT 0:c00e6c923941 23 tributed under the terms and conditions of the End User License Agree_
NirT 0:c00e6c923941 24 ment supplied by STMicroelectronics International N.V.
NirT 0:c00e6c923941 25 Full source code is available at: www.segger.com
NirT 0:c00e6c923941 26
NirT 0:c00e6c923941 27 We appreciate your understanding and fairness.
NirT 0:c00e6c923941 28 ----------------------------------------------------------------------
NirT 0:c00e6c923941 29 File : LISTWHEEL.h
NirT 0:c00e6c923941 30 Purpose : LISTWHEEL widget include
NirT 0:c00e6c923941 31 --------------------END-OF-HEADER-------------------------------------
NirT 0:c00e6c923941 32 */
NirT 0:c00e6c923941 33
NirT 0:c00e6c923941 34 #ifndef LISTWHEEL_H
NirT 0:c00e6c923941 35 #define LISTWHEEL_H
NirT 0:c00e6c923941 36
NirT 0:c00e6c923941 37 #include "WM.h"
NirT 0:c00e6c923941 38 #include "DIALOG_Intern.h"
NirT 0:c00e6c923941 39 #include "WIDGET.h"
NirT 0:c00e6c923941 40
NirT 0:c00e6c923941 41 #if GUI_WINSUPPORT
NirT 0:c00e6c923941 42
NirT 0:c00e6c923941 43 #if defined(__cplusplus)
NirT 0:c00e6c923941 44 extern "C" { // Make sure we have C-declarations in C++ programs
NirT 0:c00e6c923941 45 #endif
NirT 0:c00e6c923941 46
NirT 0:c00e6c923941 47 /*********************************************************************
NirT 0:c00e6c923941 48 *
NirT 0:c00e6c923941 49 * Defines
NirT 0:c00e6c923941 50 *
NirT 0:c00e6c923941 51 **********************************************************************
NirT 0:c00e6c923941 52 */
NirT 0:c00e6c923941 53 #define LISTWHEEL_CI_UNSEL 0
NirT 0:c00e6c923941 54 #define LISTWHEEL_CI_SEL 1
NirT 0:c00e6c923941 55
NirT 0:c00e6c923941 56 /*********************************************************************
NirT 0:c00e6c923941 57 *
NirT 0:c00e6c923941 58 * Types
NirT 0:c00e6c923941 59 *
NirT 0:c00e6c923941 60 **********************************************************************
NirT 0:c00e6c923941 61 */
NirT 0:c00e6c923941 62 typedef WM_HMEM LISTWHEEL_Handle;
NirT 0:c00e6c923941 63
NirT 0:c00e6c923941 64 /*********************************************************************
NirT 0:c00e6c923941 65 *
NirT 0:c00e6c923941 66 * Standard member functions
NirT 0:c00e6c923941 67 *
NirT 0:c00e6c923941 68 **********************************************************************
NirT 0:c00e6c923941 69 */
NirT 0:c00e6c923941 70 /*********************************************************************
NirT 0:c00e6c923941 71 *
NirT 0:c00e6c923941 72 * Create functions
NirT 0:c00e6c923941 73 *
NirT 0:c00e6c923941 74 **********************************************************************
NirT 0:c00e6c923941 75 */
NirT 0:c00e6c923941 76 LISTWHEEL_Handle LISTWHEEL_Create (const GUI_ConstString * ppText, int x0, int y0, int xSize, int ySize, int Flags);
NirT 0:c00e6c923941 77 LISTWHEEL_Handle LISTWHEEL_CreateAsChild (const GUI_ConstString * ppText, WM_HWIN hWinParent, int x0, int y0, int xSize, int ySize, int Flags);
NirT 0:c00e6c923941 78 LISTWHEEL_Handle LISTWHEEL_CreateIndirect(const GUI_WIDGET_CREATE_INFO * pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK * cb);
NirT 0:c00e6c923941 79 LISTWHEEL_Handle LISTWHEEL_CreateEx (int x0, int y0, int xSize, int ySize, WM_HWIN hParent,
NirT 0:c00e6c923941 80 int WinFlags, int ExFlags, int Id, const GUI_ConstString * ppText);
NirT 0:c00e6c923941 81 LISTWHEEL_Handle LISTWHEEL_CreateUser (int x0, int y0, int xSize, int ySize, WM_HWIN hParent,
NirT 0:c00e6c923941 82 int WinFlags, int ExFlags, int Id, const GUI_ConstString * ppText, int NumExtraBytes);
NirT 0:c00e6c923941 83
NirT 0:c00e6c923941 84 /*********************************************************************
NirT 0:c00e6c923941 85 *
NirT 0:c00e6c923941 86 * The callback ...
NirT 0:c00e6c923941 87 *
NirT 0:c00e6c923941 88 * Do not call it directly ! It is only to be used from within an
NirT 0:c00e6c923941 89 * overwritten callback.
NirT 0:c00e6c923941 90 */
NirT 0:c00e6c923941 91 void LISTWHEEL_Callback(WM_MESSAGE * pMsg);
NirT 0:c00e6c923941 92
NirT 0:c00e6c923941 93 /*********************************************************************
NirT 0:c00e6c923941 94 *
NirT 0:c00e6c923941 95 * Member functions
NirT 0:c00e6c923941 96 *
NirT 0:c00e6c923941 97 **********************************************************************
NirT 0:c00e6c923941 98 */
NirT 0:c00e6c923941 99 void LISTWHEEL_AddString (LISTWHEEL_Handle hObj, const char * s);
NirT 0:c00e6c923941 100 void * LISTWHEEL_GetItemData (LISTWHEEL_Handle hObj, unsigned Index); /* not to be documented */
NirT 0:c00e6c923941 101 void LISTWHEEL_GetItemText (LISTWHEEL_Handle hObj, unsigned Index, char * pBuffer, int MaxSize);
NirT 0:c00e6c923941 102 int LISTWHEEL_GetItemFromPos (LISTWHEEL_Handle hObj, int yPos);
NirT 0:c00e6c923941 103 int LISTWHEEL_GetLBorder (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 104 unsigned LISTWHEEL_GetLineHeight (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 105 int LISTWHEEL_GetNumItems (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 106 int LISTWHEEL_GetPos (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 107 int LISTWHEEL_GetRBorder (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 108 int LISTWHEEL_GetSel (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 109 int LISTWHEEL_GetSnapPosition(LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 110 int LISTWHEEL_GetTextAlign (LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 111 int LISTWHEEL_GetUserData (LISTWHEEL_Handle hObj, void * pDest, int NumBytes);
NirT 0:c00e6c923941 112 void LISTWHEEL_MoveToPos (LISTWHEEL_Handle hObj, unsigned int Index);
NirT 0:c00e6c923941 113 int LISTWHEEL_OwnerDraw (const WIDGET_ITEM_DRAW_INFO * pDrawItemInfo);
NirT 0:c00e6c923941 114 void LISTWHEEL_SetBkColor (LISTWHEEL_Handle hObj, unsigned int Index, GUI_COLOR Color);
NirT 0:c00e6c923941 115 void LISTWHEEL_SetDeceleration(LISTWHEEL_Handle hObj, unsigned Deceleration);
NirT 0:c00e6c923941 116 void LISTWHEEL_SetFont (LISTWHEEL_Handle hObj, const GUI_FONT * pFont);
NirT 0:c00e6c923941 117 void LISTWHEEL_SetItemData (LISTWHEEL_Handle hObj, unsigned Index, void * pData); /* not to be documented */
NirT 0:c00e6c923941 118 void LISTWHEEL_SetLBorder (LISTWHEEL_Handle hObj, unsigned BorderSize);
NirT 0:c00e6c923941 119 void LISTWHEEL_SetLineHeight (LISTWHEEL_Handle hObj, unsigned LineHeight);
NirT 0:c00e6c923941 120 void LISTWHEEL_SetOwnerDraw (LISTWHEEL_Handle hObj, WIDGET_DRAW_ITEM_FUNC * pfOwnerDraw);
NirT 0:c00e6c923941 121 void LISTWHEEL_SetPos (LISTWHEEL_Handle hObj, unsigned int Index);
NirT 0:c00e6c923941 122 void LISTWHEEL_SetRBorder (LISTWHEEL_Handle hObj, unsigned BorderSize);
NirT 0:c00e6c923941 123 void LISTWHEEL_SetSel (LISTWHEEL_Handle hObj, int Sel);
NirT 0:c00e6c923941 124 void LISTWHEEL_SetSnapPosition(LISTWHEEL_Handle hObj, int SnapPosition);
NirT 0:c00e6c923941 125 void LISTWHEEL_SetText (LISTWHEEL_Handle hObj, const GUI_ConstString * ppText);
NirT 0:c00e6c923941 126 void LISTWHEEL_SetTextAlign (LISTWHEEL_Handle hObj, int Align);
NirT 0:c00e6c923941 127 void LISTWHEEL_SetTextColor (LISTWHEEL_Handle hObj, unsigned int Index, GUI_COLOR Color);
NirT 0:c00e6c923941 128 void LISTWHEEL_SetTimerPeriod (LISTWHEEL_Handle hObj, GUI_TIMER_TIME TimerPeriod);
NirT 0:c00e6c923941 129 int LISTWHEEL_SetUserData (LISTWHEEL_Handle hObj, const void * pSrc, int NumBytes);
NirT 0:c00e6c923941 130 void LISTWHEEL_SetVelocity (LISTWHEEL_Handle hObj, int Velocity);
NirT 0:c00e6c923941 131
NirT 0:c00e6c923941 132 const GUI_FONT * LISTWHEEL_GetFont(LISTWHEEL_Handle hObj);
NirT 0:c00e6c923941 133
NirT 0:c00e6c923941 134 #if defined(__cplusplus)
NirT 0:c00e6c923941 135 }
NirT 0:c00e6c923941 136 #endif
NirT 0:c00e6c923941 137
NirT 0:c00e6c923941 138 #endif // GUI_WINSUPPORT
NirT 0:c00e6c923941 139 #endif // LISTWHEEL_H
NirT 0:c00e6c923941 140
NirT 0:c00e6c923941 141 /*************************** End of file ****************************/