2012-12-18 21:12:41 -04:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_EMPTY_UTIL_H__
|
|
|
|
#define __AP_HAL_EMPTY_UTIL_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2012-12-18 21:12:41 -04:00
|
|
|
#include "AP_HAL_Empty_Namespace.h"
|
|
|
|
|
2015-12-07 14:53:55 -04:00
|
|
|
class Empty::Util : public AP_HAL::Util {
|
2012-12-18 21:12:41 -04:00
|
|
|
public:
|
2013-02-07 00:03:34 -04:00
|
|
|
bool run_debug_shell(AP_HAL::BetterStream *stream) { return false; }
|
2012-12-18 21:12:41 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AP_HAL_EMPTY_UTIL_H__
|