12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace speaker
|
|
{
|
|
void init();
|
|
void enable();
|
|
void disable();
|
|
void register_source(uint8_t(*callback)());
|
|
void update(const uint8_t dt);
|
|
}
|