AP_HAL_SMACCM: convert to new AP_HAL printf

This commit is contained in:
Andrew Tridgell 2013-09-21 13:29:40 +10:00
parent 80e2a5cc32
commit e12a4178f3
2 changed files with 0 additions and 40 deletions

View File

@ -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;
}

View File

@ -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; }
};