blob: 0891200e01b98cd38ab95742f657b5ac9ebd45d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/***************************************************************************
* 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 <stdint.h>
#include <stddef.h>
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;
}
|