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_mult.h 320 B
#ifndef __NODE_MULT_H__
#define __NODE_MULT_H__
#include "computation_graph.h"
#include "graph_blocks.h"
extern const struct graph_node_type node_mult_type;
enum graph_node_mult_inputs {
MULT_MULTIPLICAND1,
MULT_MULTIPLICAND2,
};
enum graph_node_mult_outputs {
MULT_PRODUCT
};
#endif // __NODE_MULT_H__