You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
405 B
22 lines
405 B
7 years ago
|
#include "BetterStream.h"
|
||
|
|
||
|
#include "print_vprintf.h"
|
||
|
|
||
|
void AP_HAL::BetterStream::printf(const char *fmt, ...)
|
||
|
{
|
||
|
va_list ap;
|
||
|
va_start(ap, fmt);
|
||
|
vprintf(fmt, ap);
|
||
|
va_end(ap);
|
||
|
}
|
||
|
|
||
|
void AP_HAL::BetterStream::vprintf(const char *fmt, va_list ap)
|
||
|
{
|
||
|
print_vprintf(this, fmt, ap);
|
||
|
}
|
||
|
|
||
|
size_t AP_HAL::BetterStream::write(const char *str)
|
||
|
{
|
||
|
return write((const uint8_t *)str, strlen(str));
|
||
|
}
|