docs(script): Add new docs to script

This commit is contained in:
Dong Heng
2019-01-29 20:04:47 +08:00
parent 4247f17c7f
commit 716a3aebeb
6 changed files with 31 additions and 1 deletions

View File

@ -52,7 +52,10 @@ INPUT = \
../../components/esp8266/include/driver/gpio.h \
../../components/esp8266/include/driver/i2c.h \
../../components/esp8266/include/driver/pwm.h \
../../components/esp8266/include/driver/uart.h
../../components/esp8266/include/driver/uart.h \
../../components/esp8266/include/driver/adc.h \
../../components/esp8266/include/driver/spi.h \
../../components/esp8266/include/driver/hw_timer.h
##
## Get warnings for functions that have no documentation for their parameters or return value

View File

@ -6,3 +6,6 @@ API Guides
Build System <build-system>
Partition Tables <partition-tables>
System Task <system-tasks>
PWM and Sniffer Coexists <pwm-and-sniffer-coexists>
FOTA from an Old SDK to the New ESP8266 RTOS SDK (IDF Style) <fota-from-old-new>

View File

@ -0,0 +1,7 @@
ADC
===
API Reference
-------------
.. include:: /_build/inc/adc.inc

View File

@ -0,0 +1,7 @@
Hardware Timer
==============
API Reference
-------------
.. include:: /_build/inc/hw_timer.inc

View File

@ -6,8 +6,11 @@ Peripherals API
GPIO <gpio>
I2C <i2c>
SPI <spi>
PWM <pwm>
UART <uart>
ADC <adc>
Hardware Timer <hw_timer>
Example code for this API section is provided in :example:`peripherals` directory of ESP-IDF examples.

View File

@ -0,0 +1,7 @@
SPI
===
API Reference
-------------
.. include:: /_build/inc/spi.inc