-
Notifications
You must be signed in to change notification settings - Fork 19
/
kernel.h
175 lines (134 loc) · 2.3 KB
/
kernel.h
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#pragma once
#include "kconfig.h"
#include "kdepends.h"
#include <inttypes.h>
#include "random.h"
#include "time.h"
//#include "accel_docalibration.h"
#ifdef ACS712
#include "acs712.h"
#endif
#ifdef ADC
#include "adc.h"
#endif
#ifdef ADXL345
#include "adxl345.h"
#endif
#ifdef ATM1001
#include "amt1001.h"
#endif
//#include "audioget.h"
#ifdef AVRBUS
#include "avrbus.h"
#endif
#ifdef BH1750
#include "bh1750.h"
#endif
//#include "bldcsensored.h"
//#include "bldcsensorless.h"
#ifdef BMP085
#include "bmp085.h"
#endif
//#include "dcmotor.h"
//#include "dcmotorpwm.h"
//#include "dcmotorpwmsoft.h"
#ifdef DHT11
#include "dht.h"
#endif
#ifdef DS18B20
#include "ds18b20.h"
#endif
#ifdef ENC28J60
#include "enc28j60.h"
#endif
#ifdef FFT
#include "fftradix4.h"
#endif
#ifdef FS300A
#include "fs300a.h"
#endif
//#include "gyro_docalibration.h"
#ifdef HCSR04
#include "hcsr04.h"
#endif
#ifdef HMC5883L
#include "hmc5883l.h"
#endif
#ifdef I2CMASTER
#include "i2cmaster.h"
#endif
#ifdef I2CSLAVE
#include "twi_slave.h"
#endif
//#include "i2csoft.h"
//#include "i2csw.h"
//#include "i2csw_slave.h"
#ifdef ILI9340
#include "ili9340.h"
#endif
#ifdef IMU10DOF01
#include "imu10dof01.h"
#endif
#ifdef L3G4200D
#include "l3g4200d.h"
#endif
#ifdef L74HC165
#include "l74hc165.h"
#endif
#ifdef L74HC4051
#include "l74hc4051.h"
#endif
#ifdef L74HC595
#include "l74hc595.h"
#endif
//#include "lcdpcf8574.h"
//#include "ldr.h"
//#include "ledmatrix88.h"
//#include "magn_docalibration.h"
#ifdef MFRC522
#include "mfrc522.h"
#endif
#ifdef MMA7455
#include "mma7455.h"
#endif
#ifdef MPU6050
#include "mpu6050.h"
#include "mpu6050registers.h"
#endif
#ifdef NRF24L01
#include "nrf24l01.h"
#include "nrf24l01registers.h"
#endif
//#include "ntctemp.h"
#ifdef PCF8574
#include "pcf8574.h"
#endif
//#include "pwm.h"
//#include "pwmcd4017.h"
//#include "pwmcd4017servo.h"
#ifdef RFNET
#include "rfnet.h"
#endif
//#include "sevseg.h"
//#include "softi2c.h"
#ifdef SPI
#include "spi.h"
#endif
#ifdef SSD1306
#include "ssd1306.h"
#include "ssd1306_priv.h"
#endif
//#include "stepper02.h"
//#include "stepper04multi.h"
#if defined(TCPIP) | defined(TCP) | defined(UDP)
#include "tcpip.h"
#endif
//#include "temt6000.h"
//#include "tsl235.h"
#ifdef UART
#include "uart.h"
#endif
#ifdef VT100
#include "vt100.h"
#endif
//#include "wiinunchuck.h"