huangcm
2025-07-03 a76b2fadf6ad4adf86e241e3753a63efe03ef80c
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
*********************************************************************************************************
*                                                AR100 SYSTEM
*                                     AR100 Software System Develop Kits
*                                              include master
*
*                                    (c) Copyright 2012-2016, Sunny China
*                                             All Rights Reserved
*
* File    : include.h
* By      : Sunny
* Version : v1.0
* Date    : 2012-5-2
* Descript: the include mater header.
* Update  : date                auther      ver     notes
*           2012-5-2 14:48:33   Sunny       1.0     Create this file.
*********************************************************************************************************
*/
 
#ifndef __INCLUDE_H__
#define __INCLUDE_H__
 
#include "platform_regs.h"
#include "cpucfg_regs.h"
#include "irqnum_config.h"
 
/* general header */
#include <stdarg.h>        /* use gcc stardard header file */
#include <stddef.h>        /* use gcc stardard define keyword, like size_t, ptrdiff_t */
#include "autoconf.h"
#include "platform_config.h"
#include "./types.h"
#include "./error.h"
 
/* messages define */
#include "./messages.h"
 
/* system headers */
#include "./system/cpu.h"
#include "./system/daemon.h"
#include "./system/debugger.h"
#include "./system/notifier.h"
#include "./system/message_manager.h"
#include "./system/para.h"
 
/* driver headers */
#include "./driver/prcm.h"
#include "./driver/cpucfg.h"
#include "./driver/dram.h"
#include "./driver/hwmsgbox.h"
#include "./driver/intc.h"
#include "./driver/twi.h"
#include "./driver/pin.h"
#include "./driver/pmu.h"
#include "./driver/timer.h"
#include "./driver/uart.h"
#include "./driver/watchdog.h"
 
/* sevices */
#include "./service/standby.h"
#include "./service/mem_include.h"
 
/* debugger */
#include "./dbgs.h"
 
/* libary */
#include "./library.h"
 
#endif /* __INCLUDE_H__ */