mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_SMACCM: convert to new AP_HAL printf
This commit is contained in:
parent
80e2a5cc32
commit
e12a4178f3
|
@ -1,35 +0,0 @@
|
|||
|
||||
#include "Util.h"
|
||||
using namespace SMACCM;
|
||||
|
||||
int SMACCMUtil::snprintf(char* str, size_t size, const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, format);
|
||||
int res = this->vsnprintf(str, size, format, ap);
|
||||
va_end(ap);
|
||||
return res;
|
||||
}
|
||||
|
||||
int SMACCMUtil::snprintf_P(char* str, size_t size, const prog_char_t *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, format);
|
||||
int res = this->vsnprintf_P(str, size, format, ap);
|
||||
va_end(ap);
|
||||
return res;
|
||||
}
|
||||
|
||||
|
||||
int SMACCMUtil::vsnprintf(char* str, size_t size, const char *format, va_list ap)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int SMACCMUtil::vsnprintf_P(char* str, size_t size, const prog_char_t *format,
|
||||
va_list ap)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -7,11 +7,6 @@
|
|||
|
||||
class SMACCM::SMACCMUtil : public AP_HAL::Util {
|
||||
public:
|
||||
int snprintf(char* str, size_t size, const char *format, ...);
|
||||
int snprintf_P(char* str, size_t size, const prog_char_t *format, ...);
|
||||
int vsnprintf(char* str, size_t size, const char *format, va_list ap);
|
||||
int vsnprintf_P(char* str, size_t size, const prog_char_t *format,
|
||||
va_list ap);
|
||||
bool run_debug_shell(AP_HAL::BetterStream *stream) { return false; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue