Files @ 8e1189ce73af
Branch filter:

Location: therm/pid.h

matthewreed
Fixed settings save and restore in flash
1
2
3
4
5
6
7
8
#ifndef PIDS_H
#define PIDS_H

#include "states.h"

int16_t pid_update(uint16_t k_p, uint16_t k_i, uint16_t k_d, int16_t temp, uint8_t temp_frac, int16_t setpoint, therm_settings_t* set, therm_status_t* status);

#endif