mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 06:56:33 +00:00
54b7dc41ca
- removed unnecessary logging - print start date and time when application starts - use std::cout instead of qDebug() - better logging in DroneController classes - renamed Controller states for better readability
16 lines
328 B
C++
16 lines
328 B
C++
#pragma once
|
|
|
|
#include "az_drone_controller.h"
|
|
#include <QObject>
|
|
|
|
class AzDroneControllerPlane : public AzDroneController
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AzDroneControllerPlane(AzMission &mission, QObject *parent = nullptr);
|
|
|
|
protected:
|
|
void droneStateMachineSlot(void) override;
|
|
bool stateWaitAutoSwitch(void);
|
|
};
|