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
31
32
33
34
| /*
| *********************************************************************************************************
| * AR100 SYSTEM
| * AR100 Software System Develop Kits
| *
| *
| * (c) Copyright 2018-2024, Luojie China
| *) All Rights Reserved
| *
| * File : driver.h
| * By : LuoJie
| * Version : v1.0
| * Date : 2018-04-13 14:45
| * Descript: .
| * Update :auther ver notes
| * Luojie 1.0 Create this file.
| *********************************************************************************************************
| */
| #ifndef __DRIVER_H__
| #define __DRIVER_H__
|
| #include "device.h"
|
| #include "ccu.h"
| #include "intc.h"
| #include "pin.h"
| #include "timer.h"
| #include "uart.h"
| #include "rsb.h"
| #include "hwmsgbox.h"
| #include "hwspinlock.h"
| #include "pmu.h"
|
| #endif
|
|