usbloadergx/source/gecko.h
2010-04-10 23:44:10 +00:00

28 lines
339 B
C

#ifndef _GECKO_H_
#define _GECKO_H_
#ifdef __cplusplus
extern "C" {
#endif
#ifndef NO_DEBUG
//use this just like printf();
void gprintf(const char *str, ...);
bool InitGecko();
void hexdump(void *d, int len);
#else
#define gprintf(...)
#define InitGecko() false
#endif /* NO_DEBUG */
#ifdef __cplusplus
}
#endif
#endif