Skip to content

Commit

Permalink
Update dhry_1.c
Browse files Browse the repository at this point in the history
Signed-off-by: mahdi259 <[email protected]>
  • Loading branch information
mahdi259 authored Oct 18, 2024
1 parent 54bb301 commit 3e1430f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sw/example/dhrystone/dhry_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#include <string.h>
#include "dhry.h"

/** UART BAUD rate */
#define BAUD_RATE 19200

#ifndef DHRY_ITERS
#define DHRY_ITERS 10000
Expand Down Expand Up @@ -104,7 +106,7 @@ int main (void)
{ /* ***** NEORV32-SPECIFIC ***** */
neorv32_rte_setup();
neorv32_cpu_csr_write(CSR_MIE, 0); // no interrupts
neorv32_uart0_setup(19200, 0);
neorv32_uart0_setup(BAUD_RATE, 0);

neorv32_uart0_printf("NEORV32: Processor running at %u Hz\n", (uint32_t)neorv32_sysinfo_get_clk());
neorv32_uart0_printf("NEORV32: Executing Dhrystone (%u iterations). This may take some time...\n\n", (uint32_t)DHRY_ITERS);
Expand Down

0 comments on commit 3e1430f

Please sign in to comment.