Search found 2 matches

by lehar
Thu Aug 29, 2013 1:12 pm
Forum: Software development
Topic: Is it a software bug?
Replies: 5
Views: 3347

Re: Is it a software bug?

okay, is there a document or a short description, how each PID works? (differs from a standard PID controller, etc. use D as some other than D parm)
by lehar
Thu Aug 29, 2013 11:08 am
Forum: Software development
Topic: Is it a software bug?
Replies: 5
Views: 3347

Is it a software bug?

SW version: MultiWii 2.2
I think there's a bug in multiwii.ino

PTermACC = constrain(PTermACC,-conf.D8[PIDLEVEL]*5,+conf.D8[PIDLEVEL]*5);
I think it should be:
PTermACC = constrain(PTermACC,-conf.P8[PIDLEVEL]*5,+conf.P8[PIDLEVEL]*5);