Browse Source

Merge branch 'master' of github.com:PX4/Firmware into rc_mapping

sbg
Lorenz Meier 11 years ago
parent
commit
713f35e04e
  1. 2
      src/systemcmds/param/param.c

2
src/systemcmds/param/param.c

@ -320,7 +320,7 @@ do_set(const char* name, const char* val) @@ -320,7 +320,7 @@ do_set(const char* name, const char* val)
char* end;
f = strtod(val,&end);
param_set(param, &f);
printf(" -> new: %f\n", f);
printf(" -> new: %4.4f\n", (double)f);
}

Loading…
Cancel
Save