2012-04-29 17:42:35 +02:00
|
|
|
//Enable the line below to always write SD log
|
|
|
|
//#define sd_write_log
|
|
|
|
|
2012-04-30 01:21:34 +02:00
|
|
|
#define filebuffer 1024
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/iosupport.h>
|
2012-05-05 12:46:01 +02:00
|
|
|
#include <stdarg.h>
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-05-13 17:13:33 +02:00
|
|
|
#include "mem2.hpp"
|
2012-01-21 21:57:41 +01:00
|
|
|
#include "wifi_gecko.h"
|
|
|
|
|
|
|
|
/* init-globals */
|
|
|
|
bool geckoinit = false;
|
|
|
|
bool textVideoInit = false;
|
2012-04-29 17:42:35 +02:00
|
|
|
bool bufferMessages = true;
|
|
|
|
bool WriteToSD = false;
|
|
|
|
|
2012-05-05 12:46:01 +02:00
|
|
|
char *tmpfilebuffer = NULL;
|
2012-07-27 19:26:49 +02:00
|
|
|
u32 tmpbuffersize = filebuffer + 1 * sizeof(char);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
static ssize_t __out_write(struct _reent *r __attribute__((unused)), int fd __attribute__((unused)), const char *ptr, size_t len)
|
|
|
|
{
|
2012-04-29 17:42:35 +02:00
|
|
|
if(geckoinit && ptr)
|
|
|
|
{
|
|
|
|
u32 level;
|
|
|
|
level = IRQ_Disable();
|
|
|
|
usb_sendbuffer(1, ptr, len);
|
|
|
|
IRQ_Restore(level);
|
|
|
|
}
|
|
|
|
return len;
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const devoptab_t gecko_out = {
|
2012-05-05 12:46:01 +02:00
|
|
|
"stdout", // device name
|
|
|
|
0, // size of file structure
|
|
|
|
NULL, // device open
|
|
|
|
NULL, // device close
|
|
|
|
__out_write, // device write
|
|
|
|
NULL, // device read
|
|
|
|
NULL, // device seek
|
|
|
|
NULL, // device fstat
|
|
|
|
NULL, // device stat
|
|
|
|
NULL, // device link
|
|
|
|
NULL, // device unlink
|
|
|
|
NULL, // device chdir
|
|
|
|
NULL, // device rename
|
|
|
|
NULL, // device mkdir
|
|
|
|
0, // dirStateSize
|
|
|
|
NULL, // device diropen_r
|
|
|
|
NULL, // device dirreset_r
|
|
|
|
NULL, // device dirnext_r
|
|
|
|
NULL, // device dirclose_r
|
|
|
|
NULL, // device statvfs_r
|
|
|
|
NULL, // device ftruncate_r
|
|
|
|
NULL, // device fsync_r
|
|
|
|
NULL, // device deviceData
|
|
|
|
NULL, // device chmod_r
|
|
|
|
NULL, // device fchmod_r
|
2012-01-21 21:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static void USBGeckoOutput()
|
|
|
|
{
|
2012-04-29 17:42:35 +02:00
|
|
|
devoptab_list[STD_OUT] = &gecko_out;
|
|
|
|
devoptab_list[STD_ERR] = &gecko_out;
|
|
|
|
}
|
|
|
|
|
2012-05-19 14:29:24 +02:00
|
|
|
void ClearLogBuffer()
|
|
|
|
{
|
|
|
|
if(tmpfilebuffer == NULL)
|
|
|
|
return;
|
2012-07-27 19:26:49 +02:00
|
|
|
free(tmpfilebuffer);
|
2012-05-19 14:29:24 +02:00
|
|
|
tmpfilebuffer = NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-29 17:42:35 +02:00
|
|
|
void WriteToFile(char* tmp)
|
|
|
|
{
|
2012-05-13 19:25:26 +02:00
|
|
|
if(tmpfilebuffer == NULL)
|
|
|
|
return;
|
|
|
|
|
2012-04-29 17:42:35 +02:00
|
|
|
if(bufferMessages)
|
|
|
|
{
|
2012-04-30 01:21:34 +02:00
|
|
|
if((strlen(tmpfilebuffer) + strlen(tmp)) < filebuffer)
|
2012-04-29 17:42:35 +02:00
|
|
|
strcat(tmpfilebuffer, tmp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-07-27 19:26:49 +02:00
|
|
|
free(tmpfilebuffer);
|
2012-05-13 19:25:26 +02:00
|
|
|
tmpfilebuffer = NULL;
|
2012-04-29 17:42:35 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(WriteToSD)
|
|
|
|
{
|
|
|
|
FILE *outfile = fopen("sd:/wiiflow.log", "a");
|
|
|
|
if(outfile)
|
|
|
|
{
|
|
|
|
fwrite(tmpfilebuffer, 1, strlen(tmpfilebuffer), outfile);
|
2012-07-27 19:26:49 +02:00
|
|
|
memset(tmpfilebuffer, 0, tmpbuffersize);
|
2012-04-29 17:42:35 +02:00
|
|
|
fclose(outfile);
|
|
|
|
}
|
|
|
|
}
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//using the gprintf from crediar because it is smaller than mine
|
|
|
|
void gprintf( const char *format, ... )
|
|
|
|
{
|
2012-05-13 19:25:26 +02:00
|
|
|
char *tmp = NULL;
|
2012-01-21 21:57:41 +01:00
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
if((vasprintf(&tmp, format, va) >= 0) && tmp)
|
|
|
|
{
|
2012-04-29 17:42:35 +02:00
|
|
|
WriteToFile(tmp);
|
2012-01-21 21:57:41 +01:00
|
|
|
WifiGecko_Send(tmp, strlen(tmp));
|
2012-05-13 19:25:26 +02:00
|
|
|
__out_write(NULL, 0, tmp, strlen(tmp));
|
|
|
|
free(tmp);
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
va_end(va);
|
|
|
|
}
|
|
|
|
|
2012-05-05 12:46:01 +02:00
|
|
|
char ascii(char s)
|
|
|
|
{
|
|
|
|
if(s < 0x20)
|
|
|
|
return '.';
|
|
|
|
if(s > 0x7E)
|
|
|
|
return '.';
|
|
|
|
return s;
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-05-05 12:46:01 +02:00
|
|
|
void ghexdump(void *d, int len)
|
|
|
|
{
|
|
|
|
u8 *data;
|
|
|
|
int i, off;
|
|
|
|
data = (u8*)d;
|
|
|
|
|
|
|
|
gprintf("\n 0 1 2 3 4 5 6 7 8 9 A B C D E F 0123456789ABCDEF");
|
|
|
|
gprintf("\n==== =============================================== ================\n");
|
|
|
|
|
|
|
|
for (off = 0; off < len; off += 16)
|
|
|
|
{
|
|
|
|
gprintf("%04x ",off);
|
|
|
|
for(i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
if((i+off)>=len)
|
|
|
|
gprintf(" ");
|
|
|
|
else
|
|
|
|
gprintf("%02x ",data[off+i]);
|
|
|
|
}
|
|
|
|
gprintf(" ");
|
|
|
|
for(i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
if((i+off)>=len)
|
|
|
|
gprintf(" ");
|
|
|
|
else
|
|
|
|
gprintf("%c",ascii(data[off+i]));
|
|
|
|
}
|
|
|
|
gprintf("\n");
|
|
|
|
}
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool InitGecko()
|
|
|
|
{
|
2012-05-13 19:25:26 +02:00
|
|
|
if(geckoinit)
|
2012-05-05 12:46:01 +02:00
|
|
|
return geckoinit;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-04-29 17:42:35 +02:00
|
|
|
USBGeckoOutput();
|
|
|
|
|
|
|
|
#ifdef sd_write_log
|
|
|
|
WriteToSD = true;
|
|
|
|
#endif
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
u32 geckoattached = usb_isgeckoalive(EXI_CHANNEL_1);
|
2012-05-05 12:46:01 +02:00
|
|
|
if(geckoattached)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
|
|
|
usb_flush(EXI_CHANNEL_1);
|
|
|
|
return true;
|
|
|
|
}
|
2012-05-05 12:46:01 +02:00
|
|
|
else
|
|
|
|
return false;
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
2012-06-14 17:27:57 +02:00
|
|
|
|
|
|
|
void AllocSDGeckoBuffer()
|
|
|
|
{
|
2012-07-27 19:26:49 +02:00
|
|
|
tmpfilebuffer = (char*)malloc(tmpbuffersize);
|
2012-06-14 17:27:57 +02:00
|
|
|
if(tmpfilebuffer != NULL)
|
2012-07-27 19:26:49 +02:00
|
|
|
memset(tmpfilebuffer, 0, tmpbuffersize);
|
2012-06-14 17:27:57 +02:00
|
|
|
}
|