2012-08-31 10:34:49 +02:00
|
|
|
#include "main.h"
|
|
|
|
#include "gecko.h"
|
|
|
|
#include "Network/wifi_gecko.h"
|
|
|
|
|
2012-11-12 13:21:55 +01:00
|
|
|
extern "C" void sdprintf(const char * format, ...)
|
2012-08-31 10:34:49 +02:00
|
|
|
{
|
2012-11-12 13:21:55 +01:00
|
|
|
char * tmp = NULL;
|
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
if((vasprintf(&tmp, format, va) >= 0) && tmp)
|
|
|
|
{
|
|
|
|
FILE * file;
|
|
|
|
|
2013-01-01 09:32:57 +01:00
|
|
|
file = fopen((Settings.device_dat + ":/config/HBF/debug.txt").c_str(), "a");
|
2012-11-12 13:21:55 +01:00
|
|
|
if(file)
|
|
|
|
{
|
|
|
|
fprintf(file, "%s", tmp);
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
if(tmp)
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void xprintf(const char *str, ...)
|
|
|
|
{
|
|
|
|
if(Options.sdgecko)
|
|
|
|
sdprintf(str);
|
|
|
|
else if(Options.wifigecko)
|
2012-08-31 10:34:49 +02:00
|
|
|
wifi_printf(str);
|
2013-01-01 09:32:57 +01:00
|
|
|
#ifndef VWII
|
2012-08-31 10:34:49 +02:00
|
|
|
else
|
|
|
|
gprintf(str);
|
2013-01-01 09:32:57 +01:00
|
|
|
#endif
|
2012-08-31 10:34:49 +02:00
|
|
|
}
|