Implement MIC::StopSampling

This commit is contained in:
wheremyfoodat 2023-08-14 19:02:33 +03:00
parent b79df4bc5b
commit ae32bb8097
2 changed files with 14 additions and 0 deletions

View file

@ -18,11 +18,13 @@ class MICService {
void setIirFilter(u32 messagePointer);
void setPower(u32 messagePointer);
void startSampling(u32 messagePointer);
void stopSampling(u32 messagePointer);
void theCaptainToadFunction(u32 messagePointer);
u8 gain = 0; // How loud our microphone input signal is
bool micEnabled = false;
bool shouldClamp = false;
bool isSampling = false;
public:
MICService(Memory& mem) : mem(mem) {}