In the audio_module software/kernel/boards/audio_module/src/main.rs file the line
sam4l::pm::setup_system_clock(sam4l::pm::SystemClockSource::ExternalOscillator, 16000000); causes the baud rate to be 115200.
Changing the speed to 48 MHz
sam4l::pm::setup_system_clock(sam4l::pm::SystemClockSource::ExternalOscillator, 48000000); causes the baud rate to be 38400. Unsure as to why
In the audio_module
software/kernel/boards/audio_module/src/main.rs
file the linesam4l::pm::setup_system_clock(sam4l::pm::SystemClockSource::ExternalOscillator, 16000000);
causes the baud rate to be 115200. Changing the speed to 48 MHzsam4l::pm::setup_system_clock(sam4l::pm::SystemClockSource::ExternalOscillator, 48000000);
causes the baud rate to be 38400. Unsure as to why