Search Results
Search results 1-11 of 11.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
All point solved 1. I was not giving the correct handle 2.In the Main window i use case WM_USER: hItem = WM_GetDialogItem(pMsg->hWin, ID_Sequence_Delay); EDIT_SetDecMode(hItem, arrProfile[Sequence_Delay], 0, maxProfile[Sequence_Delay], 0, GUI_EDIT_NORMAL); break; and in the dialog arrProfile[myItemIndex] = SPINBOX_GetValue(hSpin); WM_SendMessageNoPara(parentItem, WM_USER); WM_DeleteWindow(pMsg->hWin); 3. I found the values in GUI.h and WM.H
-
Hi, I have a window with several Edit boxes, when i click the edit i open a dialog where i change a global array value. The window and the dialog are defined in 2 different c files as i intend to use this dialog in several windows. The dialog is created as follows: Source Code (4 lines) the parent window Source Code (5 lines) NOTE: I remove irrelevant code I have the following questions: related to the above code 1. In the dialog creation if i use myItem then the dialog is not created GUI_Create…
-
Hello Segger team, I know that "this is not the correct place to ask" for STM board support, but since ST provides very limited support for home users (with limited knowledge of advance setup, memory map) it will kindly ask your support on the following: 1. How to setup and the files to be changed in order to store the static data (images) in the QSPI memory, how to use/setup the SDRAM 2. How to setup LCDConf, GUIConf, flash icf and any other file in order to have the best emWin performance on t…
-
Compilation error
PostSolved, i missed an include statement
-
Compilation error
PostHello all, I am trying to build my own app with no OS and i am following this tutorial. When compiling i am getting the errors below i cant figure it why. Ca someone point me to the right direction? Source Code (1 line) and the list goes on
-
Memory usage
PostHi, For an STM32F746 Discovery board i have the following questions: 1. I would like to know if we can store the static data (images, fonts) in QSPI memory? Do you have any example? 2. By using the code + setting below i will get an increase in to 3MB RAM for GUI? Source Code (22 lines) in combination with LCDConf.c Source Code (3 lines) and GUIConf.c Source Code (1 line) Thank you
-
Knob issue
PostHi, Thank you for the quick reply. I have tested the solution from attachment but dosent work as expected. The knob has flicker on it when moving, when opening and closing the windows it gets stuck after 3 tries For the know to work i have used the following Source Code (1 line) Source Code (2 lines) So i have a smaller size knob and a small image to show the position. The only issue remaining is the limited number of cycles to open new window. This is a big problem because in my application i i…
-
Knob issue
PostHello all, I am new to emWin so i have my first issues with an application that i am trying to develop. In my main window I want to use a knob widget to select one of the next windows that i want to open. In the main window i use one 480x272 image as background and the know image 154x154, they are defined in different c files as Source Code (1 line) In the attached image you can see that the know has some rendering issues that i am not able (don't know how) to fix them and this is the reason i a…