mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-07 09:13:32 +08:00
events: Improve consistency of console messages
This commit is contained in:
committed by
Lorenz Meier
parent
9e219fba0c
commit
b36e65fd6d
@@ -369,7 +369,7 @@ void Tempcalaccel::task_main()
|
||||
|
||||
delete tempcalaccel::instance;
|
||||
tempcalaccel::instance = nullptr;
|
||||
PX4_INFO("Tempcalaccel process stopped");
|
||||
PX4_INFO("Exiting accel temperature calibration task");
|
||||
}
|
||||
|
||||
void Tempcalaccel::do_temperature_accel_calibration(int argc, char *argv[])
|
||||
@@ -400,7 +400,7 @@ int Tempcalaccel::start()
|
||||
|
||||
int run_temperature_accel_calibration()
|
||||
{
|
||||
PX4_INFO("Starting accel thermal calibration task");
|
||||
PX4_INFO("Starting accel temperature calibration task");
|
||||
tempcalaccel::instance = new Tempcalaccel();
|
||||
|
||||
if (tempcalaccel::instance == nullptr) {
|
||||
|
||||
@@ -317,7 +317,7 @@ void Tempcalbaro::task_main()
|
||||
|
||||
delete tempcalbaro::instance;
|
||||
tempcalbaro::instance = nullptr;
|
||||
PX4_INFO("Tempcalbaro process stopped");
|
||||
PX4_INFO("Exiting baro temperature calibration task");
|
||||
}
|
||||
|
||||
void Tempcalbaro::do_temperature_baro_calibration(int argc, char *argv[])
|
||||
@@ -348,7 +348,7 @@ int Tempcalbaro::start()
|
||||
|
||||
int run_temperature_baro_calibration()
|
||||
{
|
||||
PX4_INFO("Starting baro thermal calibration task");
|
||||
PX4_INFO("Starting baro temperature calibration task");
|
||||
tempcalbaro::instance = new Tempcalbaro();
|
||||
|
||||
if (tempcalbaro::instance == nullptr) {
|
||||
|
||||
@@ -365,7 +365,7 @@ void Tempcalgyro::task_main()
|
||||
|
||||
delete tempcalgyro::instance;
|
||||
tempcalgyro::instance = nullptr;
|
||||
PX4_INFO("Tempcalgyro process exited");
|
||||
PX4_INFO("Exiting gyro temperature calibration task");
|
||||
}
|
||||
|
||||
void Tempcalgyro::do_temperature_calibration(int argc, char *argv[])
|
||||
@@ -396,7 +396,7 @@ int Tempcalgyro::start()
|
||||
|
||||
int run_temperature_gyro_calibration()
|
||||
{
|
||||
PX4_INFO("Starting Temperature calibration task");
|
||||
PX4_INFO("Starting gyro temperature calibration task");
|
||||
tempcalgyro::instance = new Tempcalgyro();
|
||||
|
||||
if (tempcalgyro::instance == nullptr) {
|
||||
|
||||
Reference in New Issue
Block a user