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 : LISTVIEW_Private.h
NirT 0:c00e6c923941 30 Purpose : Private LISTVIEW include
NirT 0:c00e6c923941 31 --------------------END-OF-HEADER-------------------------------------
NirT 0:c00e6c923941 32 */
NirT 0:c00e6c923941 33
NirT 0:c00e6c923941 34 #ifndef LISTVIEW_PRIVATE_H
NirT 0:c00e6c923941 35 #define LISTVIEW_PRIVATE_H
NirT 0:c00e6c923941 36
NirT 0:c00e6c923941 37 #include "WM.h"
NirT 0:c00e6c923941 38
NirT 0:c00e6c923941 39 #if GUI_WINSUPPORT
NirT 0:c00e6c923941 40
NirT 0:c00e6c923941 41 #include <stddef.h>
NirT 0:c00e6c923941 42
NirT 0:c00e6c923941 43 #include "LISTVIEW.h"
NirT 0:c00e6c923941 44 #include "GUI_ARRAY.h"
NirT 0:c00e6c923941 45
NirT 0:c00e6c923941 46 /*********************************************************************
NirT 0:c00e6c923941 47 *
NirT 0:c00e6c923941 48 * Defines
NirT 0:c00e6c923941 49 *
NirT 0:c00e6c923941 50 **********************************************************************
NirT 0:c00e6c923941 51 */
NirT 0:c00e6c923941 52 #define SORT_TYPE U16
NirT 0:c00e6c923941 53
NirT 0:c00e6c923941 54 #define LISTVIEW_CELL_INFO_COLORS (1 << 0)
NirT 0:c00e6c923941 55 #define LISTVIEW_CELL_INFO_BITMAP (1 << 1)
NirT 0:c00e6c923941 56
NirT 0:c00e6c923941 57 /*********************************************************************
NirT 0:c00e6c923941 58 *
NirT 0:c00e6c923941 59 * Object definition
NirT 0:c00e6c923941 60 *
NirT 0:c00e6c923941 61 **********************************************************************
NirT 0:c00e6c923941 62 */
NirT 0:c00e6c923941 63
NirT 0:c00e6c923941 64 typedef struct {
NirT 0:c00e6c923941 65 GUI_COLOR aBkColor[4];
NirT 0:c00e6c923941 66 GUI_COLOR aTextColor[4];
NirT 0:c00e6c923941 67 GUI_COLOR GridColor;
NirT 0:c00e6c923941 68 const GUI_FONT * pFont;
NirT 0:c00e6c923941 69 U16 ScrollStepH;
NirT 0:c00e6c923941 70 GUI_WRAPMODE WrapMode;
NirT 0:c00e6c923941 71 int DefaultAlign;
NirT 0:c00e6c923941 72 } LISTVIEW_PROPS;
NirT 0:c00e6c923941 73
NirT 0:c00e6c923941 74 typedef struct {
NirT 0:c00e6c923941 75 void (* pfDraw)(LISTVIEW_Handle hObj, unsigned Column, unsigned Row, GUI_RECT * pRect);
NirT 0:c00e6c923941 76 void * pData;
NirT 0:c00e6c923941 77 GUI_COLOR aBkColor[4];
NirT 0:c00e6c923941 78 GUI_COLOR aTextColor[4];
NirT 0:c00e6c923941 79 I16 xOff, yOff;
NirT 0:c00e6c923941 80 U8 Flags;
NirT 0:c00e6c923941 81 } LISTVIEW_CELL_INFO;
NirT 0:c00e6c923941 82
NirT 0:c00e6c923941 83 typedef struct {
NirT 0:c00e6c923941 84 WM_HMEM hCellInfo; // Optional cell info. If 0, there is no cell info. (Defaults used)
NirT 0:c00e6c923941 85 char acText[1];
NirT 0:c00e6c923941 86 } LISTVIEW_CELL;
NirT 0:c00e6c923941 87
NirT 0:c00e6c923941 88 typedef struct {
NirT 0:c00e6c923941 89 GUI_ARRAY hCellArray;
NirT 0:c00e6c923941 90 char Disabled;
NirT 0:c00e6c923941 91 U32 UserData;
NirT 0:c00e6c923941 92 } LISTVIEW_ROW;
NirT 0:c00e6c923941 93
NirT 0:c00e6c923941 94 typedef struct {
NirT 0:c00e6c923941 95 U8 Align;
NirT 0:c00e6c923941 96 int (* fpCompare) (const void * p0, const void * p1); // User function to be called to compare the contents of 2 cells
NirT 0:c00e6c923941 97 } LISTVIEW_COLUMN;
NirT 0:c00e6c923941 98
NirT 0:c00e6c923941 99 typedef struct LISTVIEW_Obj LISTVIEW_Obj;
NirT 0:c00e6c923941 100
NirT 0:c00e6c923941 101 typedef struct {
NirT 0:c00e6c923941 102 WM_HMEM hSortArray;
NirT 0:c00e6c923941 103 SORT_TYPE SortArrayNumItems;
NirT 0:c00e6c923941 104 int (* fpSort)(LISTVIEW_Handle hObj); // Function to be called to get a sorted array
NirT 0:c00e6c923941 105 void (* fpFree)(WM_HMEM hObj); // Function to be called to free the sort object
NirT 0:c00e6c923941 106 U8 Reverse;
NirT 0:c00e6c923941 107 } LISTVIEW_SORT;
NirT 0:c00e6c923941 108
NirT 0:c00e6c923941 109 struct LISTVIEW_Obj {
NirT 0:c00e6c923941 110 WIDGET Widget;
NirT 0:c00e6c923941 111 HEADER_Handle hHeader;
NirT 0:c00e6c923941 112 WIDGET_DRAW_ITEM_FUNC * pfDrawItem;
NirT 0:c00e6c923941 113 GUI_ARRAY hRowArray; // Each entry is a handle of LISTVIEW_ROW structure.
NirT 0:c00e6c923941 114 GUI_ARRAY hColumnArray; // Each entry is a handle of LISTVIEW_COLUMN structure.
NirT 0:c00e6c923941 115 LISTVIEW_PROPS Props;
NirT 0:c00e6c923941 116 int Sel;
NirT 0:c00e6c923941 117 int SelCol;
NirT 0:c00e6c923941 118 int ShowGrid;
NirT 0:c00e6c923941 119 int SortIndex; // Column for sorting
NirT 0:c00e6c923941 120 unsigned RowDistY;
NirT 0:c00e6c923941 121 unsigned LBorder;
NirT 0:c00e6c923941 122 unsigned RBorder;
NirT 0:c00e6c923941 123 unsigned Fixed;
NirT 0:c00e6c923941 124 WM_SCROLL_STATE ScrollStateV;
NirT 0:c00e6c923941 125 WM_SCROLL_STATE ScrollStateH;
NirT 0:c00e6c923941 126 WM_HMEM hSort;
NirT 0:c00e6c923941 127 U8 IsSorted;
NirT 0:c00e6c923941 128 U8 IsPresorted;
NirT 0:c00e6c923941 129 U8 ReverseSort; // Set to 1 if reverse sorting is required
NirT 0:c00e6c923941 130 U8 Flags;
NirT 0:c00e6c923941 131 };
NirT 0:c00e6c923941 132
NirT 0:c00e6c923941 133 /*********************************************************************
NirT 0:c00e6c923941 134 *
NirT 0:c00e6c923941 135 * Macros for internal use
NirT 0:c00e6c923941 136 *
NirT 0:c00e6c923941 137 **********************************************************************
NirT 0:c00e6c923941 138 */
NirT 0:c00e6c923941 139 #if GUI_DEBUG_LEVEL >= GUI_DEBUG_LEVEL_CHECK_ALL
NirT 0:c00e6c923941 140 #define LISTVIEW_INIT_ID(p) (p->Widget.DebugId = LISTVIEW_ID)
NirT 0:c00e6c923941 141 #else
NirT 0:c00e6c923941 142 #define LISTVIEW_INIT_ID(p)
NirT 0:c00e6c923941 143 #endif
NirT 0:c00e6c923941 144
NirT 0:c00e6c923941 145 #if GUI_DEBUG_LEVEL >= GUI_DEBUG_LEVEL_CHECK_ALL
NirT 0:c00e6c923941 146 LISTVIEW_Obj * LISTVIEW_LockH(LISTVIEW_Handle h);
NirT 0:c00e6c923941 147 #define LISTVIEW_LOCK_H(h) LISTVIEW_LockH(h)
NirT 0:c00e6c923941 148 #else
NirT 0:c00e6c923941 149 #define LISTVIEW_LOCK_H(h) (LISTVIEW_Obj *)GUI_LOCK_H(h)
NirT 0:c00e6c923941 150 #endif
NirT 0:c00e6c923941 151
NirT 0:c00e6c923941 152 /*********************************************************************
NirT 0:c00e6c923941 153 *
NirT 0:c00e6c923941 154 * Private (module internal) data
NirT 0:c00e6c923941 155 *
NirT 0:c00e6c923941 156 **********************************************************************
NirT 0:c00e6c923941 157 */
NirT 0:c00e6c923941 158 extern LISTVIEW_PROPS LISTVIEW_DefaultProps;
NirT 0:c00e6c923941 159
NirT 0:c00e6c923941 160 /*********************************************************************
NirT 0:c00e6c923941 161 *
NirT 0:c00e6c923941 162 * Private (module internal) functions
NirT 0:c00e6c923941 163 *
NirT 0:c00e6c923941 164 **********************************************************************
NirT 0:c00e6c923941 165 */
NirT 0:c00e6c923941 166 LISTVIEW_CELL_INFO * LISTVIEW__CreateCellInfoLocked (LISTVIEW_Handle hObj, unsigned Column, unsigned Row);
NirT 0:c00e6c923941 167 unsigned LISTVIEW__GetNumColumns (LISTVIEW_Obj * pObj);
NirT 0:c00e6c923941 168 unsigned LISTVIEW__GetNumRows (LISTVIEW_Obj * pObj);
NirT 0:c00e6c923941 169 LISTVIEW_CELL_INFO * LISTVIEW__GetpCellInfo (LISTVIEW_Handle hObj, unsigned Column, unsigned Row);
NirT 0:c00e6c923941 170 LISTVIEW_ROW * LISTVIEW__GetpRow (LISTVIEW_Handle hObj, int Row);
NirT 0:c00e6c923941 171 unsigned LISTVIEW__GetRowDistY (LISTVIEW_Obj * pObj);
NirT 0:c00e6c923941 172 unsigned LISTVIEW__GetRowSorted (LISTVIEW_Handle hObj, int Row);
NirT 0:c00e6c923941 173 void LISTVIEW__InvalidateInsideArea (LISTVIEW_Handle hObj);
NirT 0:c00e6c923941 174 void LISTVIEW__InvalidateRow (LISTVIEW_Handle hObj, int Sel);
NirT 0:c00e6c923941 175 void LISTVIEW__InvalidateRowAndBelow(LISTVIEW_Handle hObj, int Sel);
NirT 0:c00e6c923941 176 void LISTVIEW__SetSel (LISTVIEW_Handle hObj, int NewSel);
NirT 0:c00e6c923941 177 int LISTVIEW__UpdateScrollParas (LISTVIEW_Handle hObj);
NirT 0:c00e6c923941 178
NirT 0:c00e6c923941 179 #endif // GUI_WINSUPPORT
NirT 0:c00e6c923941 180 #endif // LISTVIEW_PRIVATE_H
NirT 0:c00e6c923941 181
NirT 0:c00e6c923941 182 /*************************** End of file ****************************/