284 views
in GUI Development by
When I'm changing native code in my application class, I have to "make clean" before installing the changed application. Without "make clean" the device runs into an HardFault.

1 Answer

0 votes
by

Hi itPenguin,

the reason is that we have no dependency handling in the make process of our current build environment.

To add dependency handling to the make process, please use the attached rules.mk and add following line at the end of the makefile:

include $(wildcard $(patsubst %,%.d,$(basename $(OBJS))))

Best Regards,
Martin

Ask Embedded Wizard

Welcome to the question and answer site for Embedded Wizard users and UI developers.

Ask your question and receive answers from the Embedded Wizard support team or from other members of the community!

Embedded Wizard Website | Privacy Policy | Imprint

...