mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
2f4c8fb0fd
-fixed rebooting wiiflow with holding down b and pressing home twice
35 lines
633 B
C
35 lines
633 B
C
#include <gccore.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include "gecko.h"
|
|
|
|
/* init-globals */
|
|
bool geckoinit = false;
|
|
char gprintfBuffer[256];
|
|
void gprintf(const char *format, ...)
|
|
{
|
|
va_list va;
|
|
if(geckoinit)
|
|
{
|
|
va_start(va, format);
|
|
int len = vsnprintf(gprintfBuffer, 255, format, va);
|
|
u32 level = IRQ_Disable();
|
|
usb_sendbuffer_safe(1, gprintfBuffer, len);
|
|
IRQ_Restore(level);
|
|
va_end(va);
|
|
}
|
|
}
|
|
|
|
bool InitGecko()
|
|
{
|
|
memset(gprintfBuffer, 0, 256);
|
|
u32 geckoattached = usb_isgeckoalive(EXI_CHANNEL_1);
|
|
if(geckoattached)
|
|
{
|
|
geckoinit = true;
|
|
usb_flush(EXI_CHANNEL_1);
|
|
}
|
|
return geckoinit;
|
|
}
|