Search Results

Search results 1-5 of 5.

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

  • You are right. Changing the pensize helped. Sadly GUI_DrawRoundedRect without AA is not effected by the changing of the pensize. But that is written in the user guide.

  • Hi, I have the problem, that drawing an antialiased object doesn't look good if i just draw it once. I wrote a little test to compare the different level of AA in a state machine: C Source Code (10 lines)In the following picture you can see the different steps of AA. The left one is without while the one on the right is with the highest AA level. You can see that the rounded rect on the right looks bad in comparison to the other AA circles. This happens when I remove the for loop in the code abo…

  • Changing the default to this solved the problem: Source Code (7 lines)

  • Changing GUIDRV_FLEXCOLOR_F66708 to GUIDRV_FLEXCOLOR_F667089 helped in order to get the right command numbers for the ST7735 display driver. Changing GUIDRV_FLEXCOLOR_M16C0B16 to GUIDRV_FLEXCOLOR_M16C1B8 doesn't. My device reboots before any SPI communication happens. I debugged the program to known when The error occurs. I runs the following methods without crashing but after the last one I didn't see an other name of a method in the disassmbly window of Keil. emwin_LCD_init LCD_SETBk_ColorInde…

  • Hello, i have ran in a problem while getting started with the STM32F446ZE and the STemWin Library. The used OS is embOS from your company. I tried to follow you instructions to display "hello world" on the display. I use the display driver ST7735S which should be supported by the FlexColor driver. My problem is that instead of "hello world" the display stays white. I configured GUIConf.h like that C Source Code (1 line)In GUI_x I added the following in GUI_X_init() : C Source Code (5 lines) In U…