2022-12-02 12:36 AM
2022-12-02 05:40 AM
MCU? Any code can use any designed ram, you need handle bus capacity. Use linker section for this.
2023-01-14 12:30 AM
thanks for answer;i want to ask another question; Because the project is more complex, ui controls and containers are more, including text and dynamic text are many; HardFault_Handler freezes when adding text or ui images. The current test found that add a few dynamic text definition on crash, delete after normal; Also encountered after adding a picture crash, delete the picture after normal
2023-01-14 12:31 AM
thanks for answer;i want to ask another question; Because the project is more complex, ui controls and containers are more, including text and dynamic text are many; HardFault_Handler freezes when adding text or ui images. The current test found that add a few dynamic text definition on crash, delete after normal; Also encountered after adding a picture crash, delete the picture after normal;i use touchgfx the verson is 4.20.0
2023-01-14 12:36 AM
i check my ram and External flash are enougth;
2023-01-14 12:47 AM
Hi , maybe good is show any numbers code info...
but if your code uses many objects on one screen, try enlarge heap stack sizes for RTOS and task GUI
2023-01-14 01:08 AM
ok, After modification it's ok now ; thank you for help;
2023-03-02 05:48 PM
If each screen shares a function or control, such as a hover button (used in both screen0 and screen1), the function of the hover button in screen0 must be the same as it is in screen1; Switching screens does not free up resources; What's the best way to share a function?
2023-03-02 09:58 PM
If each screen shares a function or control, such as a hover button (used in both screen0 and screen1), the function of the hover button in screen0 must be the same as it is in screen1; Switching screens does not free up resources; What's the best way to share a function?