mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 23:48:31 -04:00
28 lines
404 B
C++
28 lines
404 B
C++
|
|
#include "Util.h"
|
|
using namespace AP_HAL_AVR;
|
|
|
|
int AVRUtil::snprintf(char* str, size_t size, const char *format, ...)
|
|
{
|
|
|
|
}
|
|
|
|
int AVRUtil::snprintf_P(char* str, size_t size, const prog_char_t *format, ...)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
int AVRUtil::vsnprintf(char* str, size_t size, const char *format, va_list ap)
|
|
{
|
|
|
|
}
|
|
|
|
int AVRUtil::vsnprintf_P(char* str, size_t size, const prog_char_t *format,
|
|
va_list ap)
|
|
{
|
|
|
|
}
|
|
|
|
|