Odyssee/projet/src/core.h

14 lines
249 B
C
Raw Normal View History

2021-06-30 08:30:02 +02:00
#ifndef _CORE_H
#define _CORE_H
#define ENGINE_TICK 100
#define PARTICULE_NB 50
// rtc_key : returns the key code with RTC system
int rtc_key(void);
// callback_tick : timer's function
int callback_tick(volatile int *tick);
#endif /* _CORE_H */