├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .markdownlint.json ├── .travis.yml ├── README.md ├── en ├── AES.md ├── DEVLIST.md ├── DMA.md ├── DVP.md ├── FFT.md ├── GPIO.md ├── I2C.md ├── I2S.md ├── IOCFG.md ├── PIC.md ├── PWM.md ├── README.md ├── RTC.md ├── RTOSEXT.md ├── SCCB.md ├── SHA256.md ├── SPI.md ├── STDIO.md ├── SUMMARY.md ├── SYSTEM.md ├── TIMER.md ├── UART.md ├── WDT.md ├── book.json └── images │ └── .gitkeep ├── zh-Hans ├── AES.md ├── DEVLIST.md ├── DMA.md ├── DVP.md ├── FFT.md ├── GPIO.md ├── I2C.md ├── I2S.md ├── IOCFG.md ├── PIC.md ├── PWM.md ├── README.md ├── RTC.md ├── RTOSEXT.md ├── SCCB.md ├── SHA256.md ├── SPI.md ├── STDIO.md ├── SUMMARY.md ├── SYSTEM.md ├── TIMER.md ├── UART.md ├── WDT.md ├── book.json └── images │ └── .gitkeep └── zh-Hant ├── AES.md ├── DEVLIST.md ├── DMA.md ├── DVP.md ├── FFT.md ├── GPIO.md ├── I2C.md ├── I2S.md ├── IOCFG.md ├── PIC.md ├── PWM.md ├── README.md ├── RTC.md ├── RTOSEXT.md ├── SCCB.md ├── SHA256.md ├── SPI.md ├── STDIO.md ├── SUMMARY.md ├── SYSTEM.md ├── TIMER.md ├── UART.md ├── WDT.md ├── book.json └── images └── .gitkeep /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/README.md -------------------------------------------------------------------------------- /en/AES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/AES.md -------------------------------------------------------------------------------- /en/DEVLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/DEVLIST.md -------------------------------------------------------------------------------- /en/DMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/DMA.md -------------------------------------------------------------------------------- /en/DVP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/DVP.md -------------------------------------------------------------------------------- /en/FFT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/FFT.md -------------------------------------------------------------------------------- /en/GPIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/GPIO.md -------------------------------------------------------------------------------- /en/I2C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/I2C.md -------------------------------------------------------------------------------- /en/I2S.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/I2S.md -------------------------------------------------------------------------------- /en/IOCFG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/IOCFG.md -------------------------------------------------------------------------------- /en/PIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/PIC.md -------------------------------------------------------------------------------- /en/PWM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/PWM.md -------------------------------------------------------------------------------- /en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/README.md -------------------------------------------------------------------------------- /en/RTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/RTC.md -------------------------------------------------------------------------------- /en/RTOSEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/RTOSEXT.md -------------------------------------------------------------------------------- /en/SCCB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/SCCB.md -------------------------------------------------------------------------------- /en/SHA256.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/SHA256.md -------------------------------------------------------------------------------- /en/SPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/SPI.md -------------------------------------------------------------------------------- /en/STDIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/STDIO.md -------------------------------------------------------------------------------- /en/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/SUMMARY.md -------------------------------------------------------------------------------- /en/SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/SYSTEM.md -------------------------------------------------------------------------------- /en/TIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/TIMER.md -------------------------------------------------------------------------------- /en/UART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/UART.md -------------------------------------------------------------------------------- /en/WDT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/WDT.md -------------------------------------------------------------------------------- /en/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/en/book.json -------------------------------------------------------------------------------- /en/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zh-Hans/AES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/AES.md -------------------------------------------------------------------------------- /zh-Hans/DEVLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/DEVLIST.md -------------------------------------------------------------------------------- /zh-Hans/DMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/DMA.md -------------------------------------------------------------------------------- /zh-Hans/DVP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/DVP.md -------------------------------------------------------------------------------- /zh-Hans/FFT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/FFT.md -------------------------------------------------------------------------------- /zh-Hans/GPIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/GPIO.md -------------------------------------------------------------------------------- /zh-Hans/I2C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/I2C.md -------------------------------------------------------------------------------- /zh-Hans/I2S.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/I2S.md -------------------------------------------------------------------------------- /zh-Hans/IOCFG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/IOCFG.md -------------------------------------------------------------------------------- /zh-Hans/PIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/PIC.md -------------------------------------------------------------------------------- /zh-Hans/PWM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/PWM.md -------------------------------------------------------------------------------- /zh-Hans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/README.md -------------------------------------------------------------------------------- /zh-Hans/RTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/RTC.md -------------------------------------------------------------------------------- /zh-Hans/RTOSEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/RTOSEXT.md -------------------------------------------------------------------------------- /zh-Hans/SCCB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/SCCB.md -------------------------------------------------------------------------------- /zh-Hans/SHA256.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/SHA256.md -------------------------------------------------------------------------------- /zh-Hans/SPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/SPI.md -------------------------------------------------------------------------------- /zh-Hans/STDIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/STDIO.md -------------------------------------------------------------------------------- /zh-Hans/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/SUMMARY.md -------------------------------------------------------------------------------- /zh-Hans/SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/SYSTEM.md -------------------------------------------------------------------------------- /zh-Hans/TIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/TIMER.md -------------------------------------------------------------------------------- /zh-Hans/UART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/UART.md -------------------------------------------------------------------------------- /zh-Hans/WDT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/WDT.md -------------------------------------------------------------------------------- /zh-Hans/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hans/book.json -------------------------------------------------------------------------------- /zh-Hans/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zh-Hant/AES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/AES.md -------------------------------------------------------------------------------- /zh-Hant/DEVLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/DEVLIST.md -------------------------------------------------------------------------------- /zh-Hant/DMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/DMA.md -------------------------------------------------------------------------------- /zh-Hant/DVP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/DVP.md -------------------------------------------------------------------------------- /zh-Hant/FFT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/FFT.md -------------------------------------------------------------------------------- /zh-Hant/GPIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/GPIO.md -------------------------------------------------------------------------------- /zh-Hant/I2C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/I2C.md -------------------------------------------------------------------------------- /zh-Hant/I2S.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/I2S.md -------------------------------------------------------------------------------- /zh-Hant/IOCFG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/IOCFG.md -------------------------------------------------------------------------------- /zh-Hant/PIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/PIC.md -------------------------------------------------------------------------------- /zh-Hant/PWM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/PWM.md -------------------------------------------------------------------------------- /zh-Hant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/README.md -------------------------------------------------------------------------------- /zh-Hant/RTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/RTC.md -------------------------------------------------------------------------------- /zh-Hant/RTOSEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/RTOSEXT.md -------------------------------------------------------------------------------- /zh-Hant/SCCB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/SCCB.md -------------------------------------------------------------------------------- /zh-Hant/SHA256.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/SHA256.md -------------------------------------------------------------------------------- /zh-Hant/SPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/SPI.md -------------------------------------------------------------------------------- /zh-Hant/STDIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/STDIO.md -------------------------------------------------------------------------------- /zh-Hant/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/SUMMARY.md -------------------------------------------------------------------------------- /zh-Hant/SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/SYSTEM.md -------------------------------------------------------------------------------- /zh-Hant/TIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/TIMER.md -------------------------------------------------------------------------------- /zh-Hant/UART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/UART.md -------------------------------------------------------------------------------- /zh-Hant/WDT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/WDT.md -------------------------------------------------------------------------------- /zh-Hant/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-doc-freertos-programming-guide/HEAD/zh-Hant/book.json -------------------------------------------------------------------------------- /zh-Hant/images/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------