This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| crosscompiler:donts [2015/03/17 07:52] – created ursgraf | crosscompiler:donts [2016/02/25 13:33] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 11: | Line 11: | ||
| Many methods in the standard library create strings. As a example: '' | Many methods in the standard library create strings. As a example: '' | ||
| + | |||
| + | ===== Use interrupts carefully ===== | ||
| + | Generally speaking, interrupts should not be used by an application. Use tasks to meet certain timing requirements. Interrupts can be and are in fact used by low-level drivers e.g. for serial communication. | ||