Update clock frequency to 24 MHz and UART baudrate to 500000.

This commit is contained in:
Jonas Thörnblad 2025-01-09 15:15:16 +01:00
parent 3ccdf8fc0f
commit c4eda3ff8e
No known key found for this signature in database
GPG key ID: 2D318AD00A326F95
4 changed files with 10 additions and 9 deletions

View file

@ -311,8 +311,8 @@ int main(void)
}
puts("\r\nTesting timer... 3");
// Matching clock at 18 MHz, giving us timer in seconds
*timer_prescaler = 18 * 1000000;
// Matching clock at 24 MHz, giving us timer in seconds
*timer_prescaler = 24 * 1000000;
// Test timer expiration after 1s
*timer = 1;