mirror of
https://github.com/jscrane/r65emu.git
synced 2024-12-27 05:32:04 +00:00
13 lines
203 B
C
13 lines
203 B
C
#ifndef __TIMED_H__
|
|
#define __TIMED_H__
|
|
|
|
typedef void (*handler_t)(void);
|
|
|
|
void timer_create(unsigned freq, handler_t handler);
|
|
|
|
#if !defined(ESP32) && !defined(ESP8266)
|
|
#define IRAM_ATTR
|
|
#endif
|
|
|
|
#endif
|