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
| /**
| * @file bsp.h
| * @author your name (you@domain.com)
| * @brief
| * @version 0.1
| * @date 2023-04-05
| *
| * @copyright Copyright (c) 2023
| *
| */
|
| #ifndef BSP_H
| #define BSP_H
|
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| void bsp_init(void);
|
| #ifdef __cplusplus
| }
| #endif
|
| #endif
|
|