Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: export/gcc_arm_ty51822r3.tmpl
- Revision:
- 29:1210849dba19
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/export/gcc_arm_ty51822r3.tmpl Mon Aug 29 11:18:36 2016 +0100
@@ -0,0 +1,18 @@
+{% extends "gcc_arm_common.tmpl" %}
+
+{% block target_all %}
+all: $(PROJECT).bin $(PROJECT)-combined.hex size
+{% endblock %}
+
+{% block additional_variables %}
+SOFTDEVICE = {% for f in hex_files %}{{f}} {% endfor %}
+{% endblock %}
+
+{% block additional_executables %}
+SREC_CAT = srec_cat
+{% endblock %}
+
+{% block additional_targets %}
+$(PROJECT)-combined.hex: $(PROJECT).hex
+ $(SREC_CAT) $(SOFTDEVICE) -intel $(PROJECT).hex -intel -o $(PROJECT)-combined.hex -intel --line-length=44
+{% endblock %}