chore(apu): change default sample rate
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-07-25 18:29:19 -05:00
parent c7e3cb5b35
commit 31abd6dc5c

View File

@ -12,7 +12,7 @@ mod types;
const WAVE_PATTERN_RAM_LEN: usize = 0x10;
const SAMPLE_RATE: u32 = 44100; // Hz
const SAMPLE_RATE: u32 = 48000; // Hz
const AUDIO_BUFFER_LEN: usize = 512;
const CHANNEL_COUNT: usize = 2;
const SAMPLE_INCREMENT: u64 = SAMPLE_RATE as u64;