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

    ayman_hendawy - - emWin related

    Post

    Hi, 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

    ayman_hendawy - - emWin related

    Post

    what is the size of that buffer do you think, I have 25KB of RAM, and 111KB of SDRAM remaining? Thanks

  • Print Screen

    ayman_hendawy - - emWin related

    Post

    hi, 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

    ayman_hendawy - - emWin related

    Post

    I 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

    ayman_hendawy - - emWin related

    Post

    Hi, 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

  • EmWIN and Arabic languaue

    ayman_hendawy - - emWin related

    Post

    Hi, I need to write some Arabic language strings on my LCD using emWIN, could I do that, and how? Thanks

  • J-link lite

    ayman_hendawy - - J-Link/Flasher related

    Post

    hi, Thanks for your reply, That mean I can keep using jlink commander for free and also using jlink lite under crossworks for free, righ? Thanks

  • J-link lite

    ayman_hendawy - - J-Link/Flasher related

    Post

    Dear, I have J-link lite, I download its software and license form segger website, I using it under CrossWorks, I want to know if this license is trial expire soon, or permanent. Thanks