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.

  • thx. I found the information in the emWin documentation and wrote own code to perform BACKSPACE.

  • Hi, I have a problem in EDIT-field used in decimal mode (EDIT_SetDecMode). In this mode the function GUI_StoreKeyMsg(GUI_KEY_BACKSPACE, 1) followed by GUI_StoreKeyMsg(GUI_KEY_BACKSPACE, 0) obviously have no effect to the edit-field. I made sure the field already has the focus and also the EDIT_Callback-function is called after setting up the Key. Can anybody help? Is it possible to use the backspace or delete in decimal-Mode of EDIT-field? thx.

  • Hello LexaGb, I would suggest to reduce the region-size to the size and address of the drawing-Buffer. Maybe you influence other software-part with the region-size of 64MB. Did you maybe link your stacks also to the external RAM? I linked my stacks to the internal RAM and disable the cache for this memory using the MPU: C Source Code (13 lines)It is just a speculation...

  • Hi, I had a similar problem with F7 cache and I use the following MPU-config for external SDRAM: C Source Code (17 lines)

  • Hi, I have a problem using the MULTIEDIT_AddText. I use a Window with one MULTIEDIT object and many buttons as keypad for text-input on a touch-display. I add only one Character to the edit-object by click on one button using MULTIEDIT_AddText-function. The strait typing of characters works fine. But if set the cursor to another position into the string in many cases the library runs into an hardfault-exception. It mainly works if I set the cursor only one ore two characters behind the end of th…