Browse Source

LSM303: Fix usage function call to fit existing structure.

sbg
Lorenz Meier 11 years ago
parent
commit
7d15e999f1
  1. 11
      src/drivers/lsm303d/lsm303d.cpp

11
src/drivers/lsm303d/lsm303d.cpp

@ -1797,6 +1797,7 @@ void reset(); @@ -1797,6 +1797,7 @@ void reset();
void info();
void regdump();
void logging();
void usage();
/**
* Start the driver.
@ -2013,17 +2014,17 @@ logging() @@ -2013,17 +2014,17 @@ logging()
exit(0);
}
} // namespace
void
lsm303d_usage()
usage()
{
warnx("missing command: try 'start', 'info', 'test', 'reset', 'regdump', 'logging'");
warnx("options:");
warnx(" -X (external bus)");
warnx(" -R rotation");
}
} // namespace
int
lsm303d_main(int argc, char *argv[])
{
@ -2041,7 +2042,7 @@ lsm303d_main(int argc, char *argv[]) @@ -2041,7 +2042,7 @@ lsm303d_main(int argc, char *argv[])
rotation = (enum Rotation)atoi(optarg);
break;
default:
lsm303d_usage();
lsm303d::usage();
exit(0);
}
}

Loading…
Cancel
Save