usbloadergx/source/gecko.c

76 lines
1.5 KiB
C
Raw Normal View History

2010-06-03 18:37:14 +02:00
#include <gccore.h>
#include <stdio.h>
#include <string.h>
/* init-globals */
bool geckoinit = false;
bool textVideoInit = false;
#ifndef NO_DEBUG
#include <stdarg.h>
//using the gprintf from crediar because it is smaller than mine
2010-09-24 02:48:03 +02:00
void gprintf(const char *str, ...)
{
2010-09-24 02:48:03 +02:00
if (!(geckoinit)) return;
2010-09-24 02:48:03 +02:00
char astr[0x100];
va_list ap;
va_start( ap, str );
2010-09-24 02:48:03 +02:00
vsprintf(astr, str, ap);
va_end( ap );
2010-09-24 02:48:03 +02:00
usb_sendbuffer(1, astr, strlen(astr));
//usb_sendbuffer_safe( 1, astr, strlen(astr) );
}
bool InitGecko()
{
2010-09-24 02:48:03 +02:00
u32 geckoattached = usb_isgeckoalive(EXI_CHANNEL_1);
if (geckoattached)
{
2010-09-24 02:48:03 +02:00
usb_flush(EXI_CHANNEL_1);
CON_EnableGecko(1, true);
return true;
}
else return false;
}
2010-09-24 02:48:03 +02:00
char ascii(char s)
{
2010-09-24 02:48:03 +02:00
if (s < 0x20) return '.';
if (s > 0x7E) return '.';
return s;
}
2010-09-24 02:48:03 +02:00
void hexdump(void *d, int len)
{
u8 *data;
int i, off;
2010-09-24 02:48:03 +02:00
data = (u8*) d;
2010-09-24 02:48:03 +02:00
gprintf("\n 0 1 2 3 4 5 6 7 8 9 A B C D E F 0123456789ABCDEF");
gprintf("\n==== =============================================== ================\n");
2010-09-24 02:48:03 +02:00
for (off = 0; off < len; off += 16)
{
2010-09-24 02:48:03 +02:00
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");
}
}
#endif /* NO_DEBUG */