Search Results

Search results 1-16 of 16.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Thank you, it's work)

  • Hi, In LPC4088 microcontroller there is a external SPIFI flash from 0x28000000 address. With IAR no problem flash SPIFI memory via flash loader IAR. But I try to flash SPIFI without IAR, only with J-Flash utility (v6.34b) and as a result is error. In settings J-Flash I see Internal Bank1. But If I flash twice that I have successfully message in J-Flash, so strange. There is a way flash SPIFI LPC4088 via J-Flash?

  • Does RTT Viewer support cyrillic symbols for example CP1251? May be there is a way to support cyrillic without using other terminals?

  • Problem with GUI_DispDecAt()

    krufter - - emWin related

    Post

    Ok, I uderstand, thanks.

  • Problem with GUI_DispDecAt()

    krufter - - emWin related

    Post

    Thank you for interesting answer. But I consider that if i.e. AddNum = 21, I hope that with function GUI_DispDecAt() I could write one digit "2" or "1" on the display. This example not draw any symbol on the display: C Source Code (1 line)

  • Problem with GUI_DispDecAt()

    krufter - - emWin related

    Post

    Hello, I have some problem with GUI_DispDecAt() function. I use next code: GUI_DispDecAt(AddNum, WinRect.x1-16,WinRect.y1-17, 1); If AddNum > 0 and AddNum < 11 Emwin draw 0,1,2,3, ... 9,1 But If AddNum > 10 Emwin not display decimal number, why it happen?

  • Draw window immediately

    krufter - - emWin related

    Post

    All right work, I'm using multitask call GUI function without multitasking GUI version.

  • Draw window immediately

    krufter - - emWin related

    Post

    Hi, I'm create my owner widget and I need in drawing my widget immediately. I have loop with GUI_Delay() in main(), but in my function I need in drawing widget immediately. WM_InvalidateWindow(hWin) has no result. GUI_Exec() in my function after WM_InvalidateWindow(hWin) sometimes freeze my program(when happen 14 calls GUI_DrawLine()). Using WM_SendMessage() with WM_PAINT attribute instead WM_InvalidateWindow(hWin) is the right way for immediately drawing widget?

  • YT_GRAPH

    krufter - - emWin related

    Post

    Sorry for stupid question, XT and YT graphs work correct! But why not accelerate usual line(now there are VLine and HLine)?

  • YT_GRAPH

    krufter - - emWin related

    Post

    Hi, I'm create graph YT type and I draw my graph. In buffer I put 0;0;0;0;10;10;10;10;10;0;0;0;0;0 Why vertical line is not straight? I'm debug SetPixel function and see that Emwin divide vertical line on two parts, why? P.S. with XY graph similar situation

  • Available window

    krufter - - emWin related

    Post

    Hi, For example if I created window: hWin = WM_CreateWindow(); and then delete it: WM_DeleteWindow(hwin); And then do something... What is the right way help define that window hWin available or not now? There is away clear or delete all windows on the screen if I don't know their handler(situation when need switching between screens)?

  • Thank you. All works successfully!

  • Graph creation

    krufter - - emWin related

    Post

    Graph work successfully, my problem in optimisation driver functions.

  • Graph creation

    krufter - - emWin related

    Post

    Hi, I'm create graph with the following code: GRAPH_DATA_Handle hData; GRAPH_SCALE_Handle hScale; WM_HWIN hGraph; GUI_SetColor(GUI_GREEN); hGraph = GRAPH_CreateEx(0, 94, 140, 34, WM_HBKWIN, WM_CF_SHOW, 0, GUI_ID_GRAPH0); for (int i = 0; i < 100; i++) { aY = 5; } GRAPH_SetBorder(hGraph, 0, 0, 0, 0); GRAPH_SetColor(hGraph, GUI_WHITE, GRAPH_CI_BK); GRAPH_SetColor(hGraph, GUI_WHITE, GRAPH_CI_BORDER); GRAPH_SetColor(hGraph, GUI_WHITE, GRAPH_CI_FRAME); GRAPH_SetColor(hGraph, GUI_WHITE, GRAPH_CI_GRID);…

  • I'm download Emwin Simulation here segger.com/downloads/emwin . Install Microsoft Visual Studio Community and open SimulationTrial.vcxproj . Then I try build it, but I have 122 mistakes such as LNK2001and LNK2019 about _memset and other symbols. My OS Windows 7 x64.

  • Antialiasing with WM

    krufter - - emWin related

    Post

    Hi, Could you tell me how I can use for example C Source Code (1 line) in a callback function static void _cbDialog(WM_MESSAGE * pMsg). I try draw GUI_AA_DrawRoundedRect() without WM - result success. But with Window Manager I can't reach success result. Is there a way using 2D graphics or antialiasing functions with WM? And why when I using this I have no draw rectangle case WM_USER: hItem = WM_GetDialogItem(pMsg->hWin, ID_TEXT_0); TEXT_SetTextColor(hItem, GUI_WHITE); TEXT_SetText(hItem, pMsg->…