/*************************************************************************** * Copyright (c) 2026 10xEngineers * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ #include "plic.h" #include "hwtimer.h" #include "uart.h" #include #include int board_init(void) { int ret; ret = plic_init(); if (ret) return ret; ret = uart_init(); if (ret) return ret; ret = hwtimer_init(); if (ret) return ret; return 0; }