Browse Source

Changed final time.

sbg
James Goppert 12 years ago
parent
commit
78ef6f5265
  1. 3
      src/drivers/md25/md25.cpp

3
src/drivers/md25/md25.cpp

@ -578,6 +578,7 @@ int md25Sine(const char *deviceName, uint8_t bus, uint8_t address) @@ -578,6 +578,7 @@ int md25Sine(const char *deviceName, uint8_t bus, uint8_t address)
float dt = 0.1;
float amplitude = 0.2;
float frequency = 0.3;
float t_final = 30.0;
// input signal
control::UOrbPublication<debug_key_value_s> input_signal(NULL,
@ -614,7 +615,7 @@ int md25Sine(const char *deviceName, uint8_t bus, uint8_t address) @@ -614,7 +615,7 @@ int md25Sine(const char *deviceName, uint8_t bus, uint8_t address)
output_signal.update();
mavlink_log_info(mavlink_fd, "rpm: %10.4f\n", (double)speed_rpm);
md25.readData();
if (t > 2.0f) break;
if (t > t_final) break;
}
md25.setMotor1Speed(0);

Loading…
Cancel
Save