tone-generator/data.hpp

19 lines
209 B
C++
Raw Permalink Normal View History

#pragma once
namespace data {
enum Mode : uint8_t {
none,
local,
stream,
flash,
};
void update();
unsigned read(char* data, unsigned len);
2024-09-29 18:07:58 +10:00
bool jump(uint32_t addr);
uint32_t get_addr();
};