mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-04 04:05:31 +00:00
36 lines
413 B
C++
36 lines
413 B
C++
#include "linux-speaker.h"
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
|
|
#include "globals.h"
|
|
|
|
#include "timeutil.h"
|
|
|
|
LinuxSpeaker::LinuxSpeaker()
|
|
{
|
|
}
|
|
|
|
LinuxSpeaker::~LinuxSpeaker()
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::begin()
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::toggle(int64_t c)
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::maintainSpeaker(int64_t c, uint64_t microseconds)
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::beginMixing()
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::mixOutput(uint8_t v)
|
|
{
|
|
}
|