mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-04 04:05:31 +00:00
36 lines
415 B
C++
36 lines
415 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(uint32_t c)
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::maintainSpeaker(uint32_t c, uint64_t microseconds)
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::beginMixing()
|
|
{
|
|
}
|
|
|
|
void LinuxSpeaker::mixOutput(uint8_t v)
|
|
{
|
|
}
|