tone-generator/data.hpp

17 lines
160 B
C++

#pragma once
namespace data {
enum Mode : uint8_t {
none,
local,
stream,
flash,
};
void update();
unsigned read(char* data, unsigned len);
};