2012-12-18 21:13:01 -04:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_SITL_UTIL_H__
|
|
|
|
#define __AP_HAL_SITL_UTIL_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-05-04 03:15:12 -03:00
|
|
|
#include "AP_HAL_SITL_Namespace.h"
|
2012-12-18 21:13:01 -04:00
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
class HALSITL::SITLUtil : public AP_HAL::Util {
|
2012-12-18 21:13:01 -04:00
|
|
|
public:
|
2015-05-04 21:59:07 -03:00
|
|
|
bool run_debug_shell(AP_HAL::BetterStream *stream) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-18 21:13:01 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AP_HAL_SITL_UTIL_H__
|