[MIC] Implement GetGain & SetGain

This commit is contained in:
wheremyfoodat 2023-01-29 16:50:44 +02:00
parent 980139e588
commit 29a740dae9
2 changed files with 25 additions and 2 deletions

View file

@ -10,7 +10,11 @@ class MICService {
MAKE_LOG_FUNCTION(log, micLogger)
// Service commands
void getGain(u32 messagePointer);
void mapSharedMem(u32 messagePointer);
void setGain(u32 messagePointer);
u8 gain = 0; // How loud our microphone input signal is
public:
MICService(Memory& mem) : mem(mem) {}