2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _GECKO_H_
|
|
|
|
#define _GECKO_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern bool geckoinit;
|
2012-04-29 17:42:35 +02:00
|
|
|
extern bool bufferMessages;
|
|
|
|
extern bool WriteToSD;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
//use this just like printf();
|
|
|
|
void gprintf(const char *format, ...);
|
|
|
|
void ghexdump(void *d, int len);
|
|
|
|
bool InitGecko();
|
2012-06-14 17:27:57 +02:00
|
|
|
void AllocSDGeckoBuffer();
|
2012-05-19 14:29:24 +02:00
|
|
|
void ClearLogBuffer();
|
2012-07-18 22:08:53 +02:00
|
|
|
void GeckoDisable();
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|