Something went wrong on our end
-
dawehr authored
Moved yaw correction to its proper location (between velocity PID output and before pitch/roll PID input). Eliminated leftover graph_add_node_SpecificTypeHere() functions.
dawehr authoredMoved yaw correction to its proper location (between velocity PID output and before pitch/roll PID input). Eliminated leftover graph_add_node_SpecificTypeHere() functions.
node_gain.h 330 B
#ifndef __NODE_GAIN_H__
#define __NODE_GAIN_H__
#include "computation_graph.h"
#include "graph_blocks.h"
extern const struct graph_node_type node_gain_type;
enum graph_node_pow_inputs {
GAIN_INPUT
};
enum graph_node_pow_params {
GAIN_GAIN
};
enum graph_node_gain_outputs {
GAIN_RESULT
};
#endif // __NODE_GAIN_H__