Search Results
Search results 1-8 of 8.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
Print Screen
PostHi, I did your suggestion, by creating a 512 byte buffer and write this buffer to file when it's full as following, but it doesn't work properly, the file is damaged? #define BufferSize 512 static void _WriteByte2File(U8 Data, void * p) { U32 nWritten; T_uezError error; //error = UEZFileWrite( *((T_uezFile *)p), &Data, 1, &nWritten); U8 Buffer[BufferSize]; static int ii = 0; int size = sizeof(Buffer); Buffer[ii] = Data; ii++; if(ii >= BufferSize) { error = UEZFileWrite( *((T_uezFile *)p), Buffer…
-
Print Screen
Postwhat is the size of that buffer do you think, I have 25KB of RAM, and 111KB of SDRAM remaining? Thanks
-
Print Screen
Posthi, find below my code: I think the error in drawing because of file system mount issue, I will see about it, but my major problem that I don't know how to fix it is the long time it take to finish drawing and create my .bmp file, it take about 2min, and create 750 kB file size, how to fix such a problem? find below my code: void SaveScreen_OK_Action (void) { T_uezFile file; T_uezError error; T_uezDevice dev_fs; char filename[40] = ""; char text[10]; WM_HWIN hItem2; hItem2 = WM_GetDialogItem(hPo…
-
Print Screen
PostI used both APIs GUI_BMP_Serialize() & GUI_BMP_SerializeEx(), when I used GUI_BMP_SerializeEx(), with different rectangle size, I noticed that in case of small rectangle size, all the screen with these dimensions are drawn with no problem, when I increase the the rectangle dimensions but still smaller than the LCD size, some of the screen with these dimensions not drawn, part of it only, why, and how to fix it? Also when I used GUI_BMP_Serialize(), not all the screen has been drawn, sometimes it…
-
Print Screen
PostHi, How could I make a print screen for what is displaying on my LCD using print screen (I mean the same function of print screen in windows PC), could something like that be done using emwin, any suggestions. Thanks