Search Results

Search results 1-12 of 12.

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

  • Shifting of screen

    anjalikrishnak - - emWin related

    Post

    Gentle Reminder !

  • Shifting of screen

    anjalikrishnak - - emWin related

    Post

    Hi Sven, We did not make any modification/change on the EVKB device hyper-flash. Regards, Anjali K

  • Shifting of screen

    anjalikrishnak - - emWin related

    Post

    Hi Sven, I have attached emwin_support.c file for your reference. We are using new SDK version 2.4.0 provided by NXP. Regards, Anjali

  • Shifting of screen

    anjalikrishnak - - emWin related

    Post

    Gentle reminder!

  • Shifting of screen

    anjalikrishnak - - emWin related

    Post

    Hi, Thanks for your reply. I am using i.MXRT1050 EVKB device with emwin version 5.38. Please find attached GUIConf.h and LCDConf.h files. Regards, Anjali

  • Shifting of screen

    anjalikrishnak - - emWin related

    Post

    I am continuously reading the data and displaying it in 5 different text boxes with different colors. But the screen gets shifted from its original position after displaying it for 4-5 times. Please find attached snaps showing two different screens. Please provide the suggestions to solve this problem.

  • Hi, I wanted to display few characters on my text widget which should have thick black border. I increased the size and look using the font converter utility but I could not find any other advanced options under this utility. Is there any way which I can make the texts to be displayed with black border?

  • Invalidating a Text box

    anjalikrishnak - - emWin related

    Post

    Looks like I am missing WM_NOTIFY_PARENT message processing

  • Invalidating a Text box

    anjalikrishnak - - emWin related

    Post

    Hi , I have a main window which has a Text Box [hText1] and this text box has two other child text boxes [hText_c1] and [hText_c2] . Both the child text boxes display three digit numbers which keeps on changing from 0 to 999 . So I added the below code in my Freertos task as below : static void digit_rotate(void *pvParamaters) { int i; for(;;){ for(i= 000;i<999;i++){ GUI_Exec(); itoa(i,str,10); WM_Invalidate(hText_c1); vTaskDelay(TIME_DELAY_SLEEP); } } } I created the text boxes using the GUI bu…

  • Text Size in Emwin

    anjalikrishnak - - emWin related

    Post

    Hi, I have to make a text fit to have of my LCD which is of resolution 800X480 . I made use of the GUI Builder and created a text Widget and set the text and the text font I set as GUI_FONT_32B_1. The text looks bigger for this font but it does not meet my requirement. Is there any other way to increase the text size?

  • EMWIN WINDOWS OVERLAP

    anjalikrishnak - - emWin related

    Post

    Hi Sven, Thank You for the reply. I tried the program which you have shared. I got the first window with a smiley but the next window is not at all appearing. I tried with changing the GUI_DELAY value . But it was not still working. What could be the issue? Thanks & Regards, Anjali

  • EMWIN WINDOWS OVERLAP

    anjalikrishnak - - emWin related

    Post

    Hi , I have to create three pages using emWin. For that I created three windows. 1. First Window has my company logo : Here I used the image widget and the display is working totally fine 2. Second Window has three columns with three different colours which will display dynamic data: Here I used three text boxes . Set the text box colours accordingly. 3. Third Window has a string to display When I switch from the first window to another , the patches of the LOGO is visible and the columns dont h…