mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-10-04 10:59:23 +00:00
32 lines
383 B
C++
32 lines
383 B
C++
|
#include "linux-speaker.h"
|
||
|
#include <pthread.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include "globals.h"
|
||
|
|
||
|
#include "timeutil.h"
|
||
|
|
||
|
LinuxSpeaker::LinuxSpeaker()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
LinuxSpeaker::~LinuxSpeaker()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LinuxSpeaker::toggle(uint32_t c)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LinuxSpeaker::maintainSpeaker(uint32_t c, uint64_t microseconds)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LinuxSpeaker::beginMixing()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LinuxSpeaker::mixOutput(uint8_t v)
|
||
|
{
|
||
|
}
|