File tree Expand file tree Collapse file tree 6 files changed +31
-1
lines changed
api-reference/peripherals Expand file tree Collapse file tree 6 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,10 @@ INPUT = \
52
52
../../components/esp8266/include/driver/gpio.h \
53
53
../../components/esp8266/include/driver/i2c.h \
54
54
../../components/esp8266/include/driver/pwm.h \
55
- ../../components/esp8266/include/driver/uart.h
55
+ ../../components/esp8266/include/driver/uart.h \
56
+ ../../components/esp8266/include/driver/adc.h \
57
+ ../../components/esp8266/include/driver/spi.h \
58
+ ../../components/esp8266/include/driver/hw_timer.h
56
59
##
57
60
58
61
## Get warnings for functions that have no documentation for their parameters or return value
Original file line number Diff line number Diff line change @@ -6,3 +6,6 @@ API Guides
6
6
7
7
Build System <build-system >
8
8
Partition Tables <partition-tables >
9
+ System Task <system-tasks >
10
+ PWM and Sniffer Coexists <pwm-and-sniffer-coexists >
11
+ FOTA from an Old SDK to the New ESP8266 RTOS SDK (IDF Style) <fota-from-old-new >
Original file line number Diff line number Diff line change
1
+ ADC
2
+ ===
3
+
4
+ API Reference
5
+ -------------
6
+
7
+ .. include :: /_build/inc/adc.inc
Original file line number Diff line number Diff line change
1
+ Hardware Timer
2
+ ==============
3
+
4
+ API Reference
5
+ -------------
6
+
7
+ .. include :: /_build/inc/hw_timer.inc
Original file line number Diff line number Diff line change @@ -6,8 +6,11 @@ Peripherals API
6
6
7
7
GPIO <gpio >
8
8
I2C <i2c >
9
+ SPI <spi >
9
10
PWM <pwm >
10
11
UART <uart >
12
+ ADC <adc >
13
+ Hardware Timer <hw_timer >
11
14
12
15
Example code for this API section is provided in :example: `peripherals ` directory of ESP-IDF examples.
13
16
Original file line number Diff line number Diff line change
1
+ SPI
2
+ ===
3
+
4
+ API Reference
5
+ -------------
6
+
7
+ .. include :: /_build/inc/spi.inc
You can’t perform that action at this time.
0 commit comments