From 5c0abbff3ce5572dc51db04f231474394f6586d0 Mon Sep 17 00:00:00 2001 From: Franci Penov Date: Sun, 7 Jul 2024 15:37:44 -0700 Subject: [PATCH] Tweak the mic gain --- firmware/firmware.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/firmware.ino b/firmware/firmware.ino index da30448..e027580 100644 --- a/firmware/firmware.ino +++ b/firmware/firmware.ino @@ -252,7 +252,7 @@ static size_t compressed_buffer_size = 400 + 3; /* header */ #else static size_t recording_buffer_size = FRAME_SIZE * 2; // 16-bit samples static size_t compressed_buffer_size = recording_buffer_size + 3; /* header */ -#define VOLUME_GAIN 4 +#define VOLUME_GAIN 2 #endif static uint8_t *s_recording_buffer = nullptr; static uint8_t *s_compressed_frame = nullptr;