Search Results
Search results 1-20 of 24.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
Hi, We are using Segger Appwizard tool to create our GUI design. We are using around 28 .xbf files to support different font sizes and styles in our design. In that 6 font files will be used for multi language and each font file size is around 5MB. So, our fonts itself takes 30MB of the flash memory. When we load this code into our board, it takes almost an hour to execute the APPW_CreatePersistentScreens() function. I would like to know what the above function does. How to reduce the time of ex…
-
Hi, We are using Appwizard tool to design our GUI. We will be using multi language support. We have to use separate font files for Chinese and Japanese as some characters use common codepoint in both languages. But I understand that we need to use a single font file for all languages as we can set only one font file for each text. How to handle this condition for texts which have translation. How to switch between font files? Your help on this is highly appreciated. Thanks.
-
Hi Florian, We used the Appwizard V1.36b_6.32b to design the window. We have used an ID_TEXT_MEAS_VAL to update the measurement values as and when it is changed. The value is passed as string to this ID_TEXT_MEAS_VAL from the application. APPW_SetText(ID_SCREEN_HOME, ID_TEXT_MEAS_VAL_C1, g_Str_PriMeasVal); Initially the update is ok. After sometime the overlap issue occurs. Your help on this is highly appreciated. Thanks.
-
Hi, I have issue with the fonts generated by the Appwizard. There are many missing fonts in the .xbf file generated by Appwizard. I have attached the .xbf file generated using fontconverter (Screenshot 340) and the .xbf file created by the Appwizard (Screenshot 341). Only basic Latin characters can be found in the file created in the Appwizard. What is causing this issue? Your help on this is highly appreciated. Thanks.
-
Button animation effect
TechGUI - - emWin related
PostHi Florian, Is there any example implementation for reference? Thanks.
-
Button animation effect
TechGUI - - emWin related
PostHi, Is it possible to create a ripple effect button as shown in below link (circular button) using Appwizard? csshint.com/css-ripple-effects/ Thanks.
-
Hi, I will be using the RA8877 external display controller via the SPI interface to interface with the 7" AZ display. I would like to know if the segger emWin supports RA8877? RA8877 has internal drawing engine and multi buffer support etc. Can these be used directly by segger emWin? Also, which display controller driver should I use for RA8877? Your timely help on this is highly appreciated. Thanks.
-
Hi, I would like to know how the below lines of code work in Main_Task in the GUI. while (1) { while (GUI_Exec1()) { APPW_Exec(); } APPW_Exec(); PRINTF("GUI task ...\r\n"); GUI_Delay(50); } why should we call APPW_Exec(); twice? Will the PRINTF call which I have placed, be printed everytime? I sometimes see that the serial messages are not printed and it looks like its still in GUI_EXEC1(). When will such situation occur? Your help on this is highly appreciated. Thanks.