blob: a80e07f682976022581f80ebec0e557fb67b4477 [file] [log] [blame]
Patrick Ventured8012182018-03-08 08:21:38 -08001#pragma once
2
3#include "ec/pid.hpp"
4
Patrick Ventured8012182018-03-08 08:21:38 -08005/*
6 * Given a configuration structure, fill out the information we use within the
7 * PID loop.
8 */
Patrick Venturef77d5a52018-10-23 09:32:52 -07009void InitializePIDStruct(ec::pid_info_t* info, const ec::pidinfo& initial);
Patrick Ventured8012182018-03-08 08:21:38 -080010
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070011void DumpPIDStruct(ec::pid_info_t* info);