Search Results
Search results 1-4 of 4.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
LCDConf.h
DJJ - - emWin related
PostHello, with other words you have to recompile the library, because the driver is part of it and the LCDConf.h normally contains an initialization macro for the display controller initialization which is executed within the driver. To avoid recompiling of the library you can also use a function call to an application defined routine in the initialization macro: void APP_InitDisplayController(void); #define LCD_INIT_CONTROLLER APP_InitDisplayController() So you can play with the registers without …
-
Hello, I assume you tried to show the Unicode character 0x8985. Further you used the function GUI_UC_SetEncodeUTF8() for automatic UTF8 decoding. In UTF8 the sequence "\x89\x85" is wrong to specify this character. Instead of this you should use "\xe8\xa6\x85". More infos about UTF8 you can find under en.wikipedia.org/wiki/UTF-8 DJJ
-
Message Box
DJJ - - emWin related
PostHi, try the following: C Source Code (51 lines) Regards DJJ