2018-02-07 10:20:26 -05:00
|
|
|
#include "linux-speaker.h"
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "globals.h"
|
|
|
|
|
|
|
|
#include "timeutil.h"
|
|
|
|
|
|
|
|
LinuxSpeaker::LinuxSpeaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LinuxSpeaker::~LinuxSpeaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-28 13:25:48 -05:00
|
|
|
void LinuxSpeaker::begin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-02 09:06:15 -04:00
|
|
|
void LinuxSpeaker::toggle(int64_t c)
|
2018-02-07 10:20:26 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-02 09:06:15 -04:00
|
|
|
void LinuxSpeaker::maintainSpeaker(int64_t c, uint64_t microseconds)
|
2018-02-07 10:20:26 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LinuxSpeaker::beginMixing()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LinuxSpeaker::mixOutput(uint8_t v)
|
|
|
|
{
|
|
|
|
}
|