mini/gecko.h

11 lines
213 B
C
Raw Normal View History

2008-12-28 14:35:37 +01:00
#ifndef __GECKO_H__
#define __GECKO_H__
#include "types.h"
void gecko_init(void);
u8 gecko_enable_console(const u8 enable);
int gecko_printf(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
2008-12-28 14:35:37 +01:00
#endif