From a97c7f0b584a0d6e79852f58567e0a2962f061f4 Mon Sep 17 00:00:00 2001 From: Jacob Pease Date: Wed, 24 Jul 2024 22:43:47 -0500 Subject: [PATCH] Initialized UART with Arty frequency and baud rate. Will make this dynamic in the future --- fpga/zsbl/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga/zsbl/boot.c b/fpga/zsbl/boot.c index 786879c49..e8065f732 100644 --- a/fpga/zsbl/boot.c +++ b/fpga/zsbl/boot.c @@ -96,7 +96,7 @@ void copyFlash(QWORD address, QWORD * Dst, DWORD numBlocks) { int ret = 0; // Initialize UART for messages - init_uart(); + init_uart(20000000, 115200); // Print the wally banner print_uart(BANNER);