RT1050 GUI demo using emWin library

Committer:
alejandroRL
Date:
Thu Sep 20 19:16:34 2018 +0000
Revision:
0:dd702039127a
emWin GUI Demo for RT1050

Who changed what in which revision?

UserRevisionLine numberNew contents of line
alejandroRL 0:dd702039127a 1 /*********************************************************************
alejandroRL 0:dd702039127a 2 * SEGGER Microcontroller GmbH & Co. KG *
alejandroRL 0:dd702039127a 3 * Solutions for real time microcontroller applications *
alejandroRL 0:dd702039127a 4 **********************************************************************
alejandroRL 0:dd702039127a 5 * *
alejandroRL 0:dd702039127a 6 * (c) 1996 - 2016 SEGGER Microcontroller GmbH & Co. KG *
alejandroRL 0:dd702039127a 7 * *
alejandroRL 0:dd702039127a 8 * Internet: www.segger.com Support: support@segger.com *
alejandroRL 0:dd702039127a 9 * *
alejandroRL 0:dd702039127a 10 **********************************************************************
alejandroRL 0:dd702039127a 11
alejandroRL 0:dd702039127a 12 ** emWin V5.38 - Graphical user interface for embedded applications **
alejandroRL 0:dd702039127a 13 All Intellectual Property rights in the Software belongs to SEGGER.
alejandroRL 0:dd702039127a 14 emWin is protected by international copyright laws. Knowledge of the
alejandroRL 0:dd702039127a 15 source code may not be used to write a similar product. This file may
alejandroRL 0:dd702039127a 16 only be used in accordance with the following terms:
alejandroRL 0:dd702039127a 17
alejandroRL 0:dd702039127a 18 The software has been licensed to NXP Semiconductors USA, Inc. whose
alejandroRL 0:dd702039127a 19 registered office is situated at 411 E. Plumeria Drive, San Jose,
alejandroRL 0:dd702039127a 20 CA 95134, USA solely for the purposes of creating libraries for
alejandroRL 0:dd702039127a 21 NXPs M0, M3/M4 and ARM7/9 processor-based devices, sublicensed and
alejandroRL 0:dd702039127a 22 distributed under the terms and conditions of the NXP End User License
alejandroRL 0:dd702039127a 23 Agreement.
alejandroRL 0:dd702039127a 24 Full source code is available at: www.segger.com
alejandroRL 0:dd702039127a 25
alejandroRL 0:dd702039127a 26 We appreciate your understanding and fairness.
alejandroRL 0:dd702039127a 27 ----------------------------------------------------------------------
alejandroRL 0:dd702039127a 28 Licensing information
alejandroRL 0:dd702039127a 29
alejandroRL 0:dd702039127a 30 Licensor: SEGGER Microcontroller Systems LLC
alejandroRL 0:dd702039127a 31 Licensed to: NXP Semiconductors, 1109 McKay Dr, M/S 76, San Jose, CA 95131, USA
alejandroRL 0:dd702039127a 32 Licensed SEGGER software: emWin
alejandroRL 0:dd702039127a 33 License number: GUI-00186
alejandroRL 0:dd702039127a 34 License model: emWin License Agreement, dated August 20th 2011
alejandroRL 0:dd702039127a 35 Licensed product: -
alejandroRL 0:dd702039127a 36 Licensed platform: NXP's ARM 7/9, Cortex-M0,M3,M4
alejandroRL 0:dd702039127a 37 Licensed number of seats: -
alejandroRL 0:dd702039127a 38 ----------------------------------------------------------------------
alejandroRL 0:dd702039127a 39 File : IP_FS.h
alejandroRL 0:dd702039127a 40 Purpose : File system abstraction layer
alejandroRL 0:dd702039127a 41 ---------------------------END-OF-HEADER------------------------------
alejandroRL 0:dd702039127a 42
alejandroRL 0:dd702039127a 43 Attention : Do not modify this file !
alejandroRL 0:dd702039127a 44 */
alejandroRL 0:dd702039127a 45
alejandroRL 0:dd702039127a 46 #ifndef IP_FS_H
alejandroRL 0:dd702039127a 47 #define IP_FS_H
alejandroRL 0:dd702039127a 48
alejandroRL 0:dd702039127a 49 #include "SEGGER.h"
alejandroRL 0:dd702039127a 50
alejandroRL 0:dd702039127a 51 #if defined(__cplusplus)
alejandroRL 0:dd702039127a 52 extern "C" { /* Make sure we have C-declarations in C++ programs */
alejandroRL 0:dd702039127a 53 #endif
alejandroRL 0:dd702039127a 54
alejandroRL 0:dd702039127a 55 /*********************************************************************
alejandroRL 0:dd702039127a 56 *
alejandroRL 0:dd702039127a 57 * Functions
alejandroRL 0:dd702039127a 58 *
alejandroRL 0:dd702039127a 59 **********************************************************************
alejandroRL 0:dd702039127a 60 */
alejandroRL 0:dd702039127a 61
alejandroRL 0:dd702039127a 62 typedef struct {
alejandroRL 0:dd702039127a 63 //
alejandroRL 0:dd702039127a 64 // Read only file operations. These have to be present on ANY file system, even the simplest one.
alejandroRL 0:dd702039127a 65 //
alejandroRL 0:dd702039127a 66 void* (*pfOpenFile) (const char* sFilename);
alejandroRL 0:dd702039127a 67 int (*pfCloseFile) (void* hFile);
alejandroRL 0:dd702039127a 68 int (*pfReadAt) (void* hFile, void* pBuffer, U32 Pos, U32 NumBytes);
alejandroRL 0:dd702039127a 69 long (*pfGetLen) (void* hFile);
alejandroRL 0:dd702039127a 70 //
alejandroRL 0:dd702039127a 71 // Directory query operations.
alejandroRL 0:dd702039127a 72 //
alejandroRL 0:dd702039127a 73 void (*pfForEachDirEntry) (void* pContext, const char* sDir, void (*pf)(void* pContext, void* pFileEntry));
alejandroRL 0:dd702039127a 74 void (*pfGetDirEntryFileName) (void* pFileEntry, char* sFileName, U32 SizeOfBuffer);
alejandroRL 0:dd702039127a 75 U32 (*pfGetDirEntryFileSize) (void* pFileEntry, U32* pFileSizeHigh);
alejandroRL 0:dd702039127a 76 U32 (*pfGetDirEntryFileTime) (void* pFileEntry);
alejandroRL 0:dd702039127a 77 int (*pfGetDirEntryAttributes)(void* pFileEntry);
alejandroRL 0:dd702039127a 78 //
alejandroRL 0:dd702039127a 79 // Write file operations.
alejandroRL 0:dd702039127a 80 //
alejandroRL 0:dd702039127a 81 void* (*pfCreate) (const char* sFileName);
alejandroRL 0:dd702039127a 82 void* (*pfDeleteFile) (const char* sFilename);
alejandroRL 0:dd702039127a 83 int (*pfRenameFile) (const char* sOldFilename, const char* sNewFilename);
alejandroRL 0:dd702039127a 84 int (*pfWriteAt) (void* hFile, void* pBuffer, U32 Pos, U32 NumBytes);
alejandroRL 0:dd702039127a 85 //
alejandroRL 0:dd702039127a 86 // Additional directory operations
alejandroRL 0:dd702039127a 87 //
alejandroRL 0:dd702039127a 88 int (*pfMKDir) (const char* sDirName);
alejandroRL 0:dd702039127a 89 int (*pfRMDir) (const char* sDirName);
alejandroRL 0:dd702039127a 90 //
alejandroRL 0:dd702039127a 91 // Additional operations
alejandroRL 0:dd702039127a 92 //
alejandroRL 0:dd702039127a 93 int (*pfIsFolder) (const char* sPath);
alejandroRL 0:dd702039127a 94 int (*pfMove) (const char* sOldFilename, const char* sNewFilename);
alejandroRL 0:dd702039127a 95 } IP_FS_API;
alejandroRL 0:dd702039127a 96
alejandroRL 0:dd702039127a 97 extern const IP_FS_API IP_FS_ReadOnly; // Read-only file system, typically located in flash memory.
alejandroRL 0:dd702039127a 98 extern const IP_FS_API IP_FS_Win32; // File system interface for Win32.
alejandroRL 0:dd702039127a 99 extern const IP_FS_API IP_FS_Linux; // File system interface for Linux
alejandroRL 0:dd702039127a 100 extern const IP_FS_API IP_FS_FS; // Target file system (emFile), shows and allows access to hidden files.
alejandroRL 0:dd702039127a 101 extern const IP_FS_API IP_FS_FS_AllowHiddenAccess; // Target file system (emFile), does not show hidden files but allows access to them.
alejandroRL 0:dd702039127a 102 extern const IP_FS_API IP_FS_FS_DenyHiddenAccess; // Target file system (emFile), does not show hidden files and does not allow access to them.
alejandroRL 0:dd702039127a 103
alejandroRL 0:dd702039127a 104 void IP_FS_WIN32_ConfigBaseDir(const char* sDir);
alejandroRL 0:dd702039127a 105
alejandroRL 0:dd702039127a 106
alejandroRL 0:dd702039127a 107 #if defined(__cplusplus)
alejandroRL 0:dd702039127a 108 }
alejandroRL 0:dd702039127a 109 #endif
alejandroRL 0:dd702039127a 110
alejandroRL 0:dd702039127a 111
alejandroRL 0:dd702039127a 112 #endif /* Avoid multiple inclusion */
alejandroRL 0:dd702039127a 113
alejandroRL 0:dd702039127a 114 /*************************** End of file ****************************/