tone-generator/scheduler.hpp

15 lines
169 B
C++
Raw Normal View History

2024-08-19 22:43:24 +10:00
#pragma once
namespace scheduler {
inline uint32_t timestamp = 0;
inline bool running = false;
2024-08-25 16:53:23 +10:00
void init();
2024-08-19 22:43:24 +10:00
void do_next();
2024-08-25 16:53:23 +10:00
void do_all();
2024-08-19 22:43:24 +10:00
void clear();
};