mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
10 lines
213 B
C++
10 lines
213 B
C++
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
#include "AP_HAL_Empty_Namespace.h"
|
|
|
|
class Empty::Util : public AP_HAL::Util {
|
|
public:
|
|
bool run_debug_shell(AP_HAL::BetterStream *stream) override { return false; }
|
|
};
|