mini/gecko.h

13 lines
272 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)));
void gecko_timer_initialize(void);
void gecko_timer(void);
2008-12-28 14:35:37 +01:00
#endif