1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| /*
| * PLL.h
| *
| * Created on: 2022Äê3ÔÂ23ÈÕ
| * Author: graydon
| */
|
| #ifndef DRV_PLL_H_
| #define DRV_PLL_H_
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| void initPLL_SDRAM(void);
|
| #ifdef __cplusplus
| }
| #endif
| #endif /* DRV_PLL_H_ */
|
|