You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CMSIS-DSP/cmsisdsp/cg/static/scheduler/templates/cmsisNode.cpp

13 lines
285 B
C++

{% for ptr in ptrs %}
{{theType}}* {{ptr}};
{% endfor %}
{% for ptr in inputs %}
{{ptr[0]}}=this->{{ptr[2]}}();
{% endfor %}
{% for ptr in outputs %}
{{ptr[0]}}=this->{{ptr[2]}}();
{% endfor %}
{{func}}({{args}},{{nb}});
return(0);