13 lines
288 B
C
13 lines
288 B
C
#pragma once
|
|
|
|
typedef void (*system_tick_t)();
|
|
|
|
void runtime_init();
|
|
void runtime_loop();
|
|
void runtime_destroy();
|
|
|
|
void runtime_request_stop();
|
|
|
|
void runtime_callback_single(system_tick_t callback, long delay);
|
|
void runtime_callback_many(system_tick_t callback, long period, long phase);
|