Skip to content

Commit

Permalink
Add missing configuration board audio configuration for 2.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sundström Valter committed Nov 4, 2024
1 parent 239d335 commit 054653f
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions brains2/core/boards/DUO_BRAINS_2.0-beta1/board_audio_output.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@

typedef AudioOutputMQS BoardAudioOutput;

const float MAIN_GAIN = 0.5f;
const float DELAY_GAIN = 0.6f;
const float KICK_GAIN = 0.8f;
const float HAT_GAIN = 0.9f;
float MAIN_GAIN = 0.5f;
float DELAY_GAIN = 0.6f;
float KICK_GAIN = 0.8f;
float HAT_GAIN = 0.9f;

const float HEADPHONE_MAIN_GAIN = 0.5f;
const float HEADPHONE_DELAY_GAIN = 0.6f;
const float HEADPHONE_KICK_GAIN = 0.8f;
const float HEADPHONE_HAT_GAIN = 0.9f;

const float SPEAKER_MAIN_GAIN = 0.5f;
const float SPEAKER_DELAY_GAIN = 0.6f;
const float SPEAKER_KICK_GAIN = 0.8f;
const float SPEAKER_HAT_GAIN = 0.9f;

const float HEADPHONE_GAIN = 2.1f;
const float SPEAKER_GAIN = 2.5f;
Expand Down

0 comments on commit 054653f

Please sign in to comment.