This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

GUI not working after update Keil Middleware to 7.1.0

Hello All,

After updated the middleware from 7.0.0 to 7.1.0, the GUI is not working, but others(USB, file system) are working well. Can I only update the USB and file system and remain the old GUI?

Parents
  • The GUI procedure is as follows:

    (1) Call GUI_Init
    (2) Call GUI_DrawBitmap to draw a splash image
    (3) After 5s, create a dialog with a couple of widgets
    ...

    After updated the middleware, the LCD screen would stay in the splash image and not go on. while the previous middleware has no this issue.

    Now I have an workaround, call GUI_SelectLayer (0) before creating the dialog, and then everything is OK.

    But actually, I don't fully know why? Isn't the default selected layer 0 in new middleware?

Reply
  • The GUI procedure is as follows:

    (1) Call GUI_Init
    (2) Call GUI_DrawBitmap to draw a splash image
    (3) After 5s, create a dialog with a couple of widgets
    ...

    After updated the middleware, the LCD screen would stay in the splash image and not go on. while the previous middleware has no this issue.

    Now I have an workaround, call GUI_SelectLayer (0) before creating the dialog, and then everything is OK.

    But actually, I don't fully know why? Isn't the default selected layer 0 in new middleware?

Children