You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
501 B
22 lines
501 B
8 years ago
|
{# jinja syntax: http://jinja.pocoo.org/docs/2.9/templates/ #}
|
||
|
#include <stdint.h>
|
||
|
#include <systemlib/param/param.h>
|
||
|
|
||
|
// DO NOT EDIT
|
||
|
// This file is autogenerated from parameters.xml
|
||
|
|
||
|
__BEGIN_DECLS
|
||
|
|
||
|
struct px4_parameters_t {
|
||
|
{%- for param in params %}
|
||
|
const struct param_info_s __param__{{ param.attrib["name"] }};
|
||
|
{%- endfor %}
|
||
|
const unsigned int param_count;
|
||
|
};
|
||
|
|
||
|
extern const struct px4_parameters_t px4_parameters;
|
||
|
|
||
|
__END_DECLS
|
||
|
|
||
|
{# vim: set noet ft=jinja fenc=utf-8 ff=unix sts=4 sw=4 ts=4 : #}
|