We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Makefile template might require adding a user extensions. For instance, there might be additional commands added like merging hex files.
If you look for instance at mbed extensions for their makefiles, you find there
{% block additional_variables %} SOFTDEVICE = mbed/TARGET_NRF51822/TARGET_NORDIC/TARGET_MCU_NRF51822/Lib/s110_nrf51822_7_0_0/s110_nrf51822_7.0.0_softdevice.hex {% endblock %} {% block additional_executables %} SREC_CAT = srec_cat {% endblock %} {% block additional_targets %} merge: $(SREC_CAT) $(SOFTDEVICE) -intel $(PROJECT).hex -intel -o combined.hex -intel --line-length=44 {% endblock %}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Makefile template might require adding a user extensions. For instance, there might be additional commands added like merging hex files.
If you look for instance at mbed extensions for their makefiles, you find there
The text was updated successfully, but these errors were encountered: