changed casting

git-svn-id: https://arducopter.googlecode.com/svn/trunk@1515 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
jasonshort 2011-01-19 01:48:23 +00:00
parent f5fef60e03
commit 05f8162d81
1 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ void parseCommand(char *buffer)
break;
case 'X':
pid_stabilize_roll.imax((int)(value * 100));
pid_stabilize_pitch.imax((int)(value * 100));
pid_stabilize_roll.imax(value * 100);
pid_stabilize_pitch.imax(value * 100);
save_EEPROM_PID();
break;