├── .github └── workflows │ ├── docs.yml │ ├── push.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── boards.txt ├── cores └── k210 │ ├── Arduino.h │ ├── Binary.h │ ├── Client.h │ ├── Common.cpp │ ├── Common.h │ ├── Compat.h │ ├── HardwareSerial.cpp │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Interrupts.h │ ├── Main.cpp │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── Udp.h │ ├── WCharacter.h │ ├── WString.cpp │ ├── WString.h │ ├── components │ ├── compatible.c │ ├── fatfs │ │ ├── FatFs │ │ │ ├── 00history.txt │ │ │ ├── 00readme.txt │ │ │ ├── LICENSE.txt │ │ │ ├── diskio.c │ │ │ ├── ff.c │ │ │ ├── ffsystem.c │ │ │ └── ffunicode.c │ │ ├── vfs_fat.c │ │ └── vfs_fat_sdspi.c │ ├── include │ │ ├── compatible.h │ │ ├── espressif │ │ │ └── esp_err.h │ │ ├── fatfs │ │ │ ├── esp_vfs_fat.h │ │ │ ├── esp_vfs_fat_conf.h │ │ │ └── fatfs │ │ │ │ ├── diskio.h │ │ │ │ ├── ff.h │ │ │ │ └── ffconf.h │ │ ├── sdcard │ │ │ └── sdcard.h │ │ ├── spiffs │ │ │ ├── esp_spiffs.h │ │ │ ├── k210_spiffs_config.h │ │ │ ├── spiffs │ │ │ │ ├── spiffs.h │ │ │ │ └── spiffs_nucleus.h │ │ │ └── spiffs_config.h │ │ ├── unity │ │ │ ├── unity.h │ │ │ ├── unity_config.h │ │ │ └── unity_internals.h │ │ └── vfs │ │ │ └── esp_vfs.h │ ├── sdcard │ │ ├── README │ │ ├── sdcard.c │ │ └── sdcard_spi.c │ ├── spiffs │ │ ├── LICENSE │ │ ├── esp_spiffs.c │ │ ├── spiffs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── spiffs_cache.c │ │ │ ├── spiffs_check.c │ │ │ ├── spiffs_gc.c │ │ │ ├── spiffs_hydrogen.c │ │ │ └── spiffs_nucleus.c │ │ ├── spiffs_api.c │ │ └── spiffs_api.h │ ├── unity │ │ └── src │ │ │ ├── LICENSE.txt │ │ │ ├── port.cpp │ │ │ └── unity.c │ └── vfs │ │ ├── LICENSE │ │ ├── esp_vfs.c │ │ ├── esp_vfs_common.h │ │ └── esp_vfs_private.h │ ├── k210-hal │ ├── k210-hal-dma.c │ ├── k210-hal-dma.h │ ├── k210-hal-flash.c │ ├── k210-hal-flash.h │ ├── k210-hal-fpioa.c │ ├── k210-hal-fpioa.h │ ├── k210-hal-gpio.c │ ├── k210-hal-gpio.h │ ├── k210-hal-soft-spi.c │ ├── k210-hal-soft-spi.h │ ├── k210-hal-tft-bus.c │ ├── k210-hal-tft-bus.h │ ├── k210-hal-timer.c │ ├── k210-hal-timer.h │ ├── k210-hal-uart.c │ ├── k210-hal-uart.h │ └── k210-hal.h │ ├── k210-sdk │ ├── bsp │ │ ├── k210_atomic.h │ │ ├── k210_bsp.h │ │ ├── k210_encoding.h │ │ ├── k210_interrupt.h │ │ ├── k210_lock.h │ │ └── k210_platform.h │ ├── drivers │ │ ├── k210_aes.c │ │ ├── k210_aes.h │ │ ├── k210_clint.c │ │ ├── k210_clint.h │ │ ├── k210_dmac.c │ │ ├── k210_dmac.h │ │ ├── k210_dvp.c │ │ ├── k210_dvp.h │ │ ├── k210_fft.c │ │ ├── k210_fft.h │ │ ├── k210_fpioa.c │ │ ├── k210_fpioa.h │ │ ├── k210_gpio.c │ │ ├── k210_gpio.h │ │ ├── k210_gpio_common.h │ │ ├── k210_gpiohs.c │ │ ├── k210_gpiohs.h │ │ ├── k210_i2c.c │ │ ├── k210_i2c.h │ │ ├── k210_i2s.c │ │ ├── k210_i2s.h │ │ ├── k210_io.h │ │ ├── k210_kpu.c │ │ ├── k210_kpu.h │ │ ├── k210_plic.c │ │ ├── k210_plic.h │ │ ├── k210_pwm.c │ │ ├── k210_pwm.h │ │ ├── k210_rtc.c │ │ ├── k210_rtc.h │ │ ├── k210_sha256.c │ │ ├── k210_sha256.h │ │ ├── k210_spi.c │ │ ├── k210_spi.h │ │ ├── k210_sysctl.c │ │ ├── k210_sysctl.h │ │ ├── k210_timer.c │ │ ├── k210_timer.h │ │ ├── k210_uart.c │ │ ├── k210_uart.h │ │ ├── k210_uarths.c │ │ ├── k210_uarths.h │ │ ├── k210_utils.c │ │ ├── k210_utils.h │ │ ├── k210_wdt.c │ │ └── k210_wdt.h │ ├── nncase │ │ ├── .clang-format │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── datatypes.h │ │ │ ├── io_utils.h │ │ │ ├── kernels │ │ │ │ ├── cpu │ │ │ │ │ └── cpu_kernels.h │ │ │ │ ├── k210 │ │ │ │ │ └── k210_kernels.h │ │ │ │ ├── kernel_utils.h │ │ │ │ ├── neutral │ │ │ │ │ └── neutral_kernels.h │ │ │ │ └── riscv │ │ │ │ │ └── neutral_kernels.h │ │ │ ├── nncase.h │ │ │ ├── runtime │ │ │ │ ├── binary_reader.h │ │ │ │ ├── binary_writer.h │ │ │ │ ├── cpu │ │ │ │ │ ├── cpu_ops_body.h │ │ │ │ │ └── interpreter.h │ │ │ │ ├── interpreter.h │ │ │ │ ├── k210 │ │ │ │ │ ├── interpreter.h │ │ │ │ │ ├── k210_ops_body.h │ │ │ │ │ ├── k210_runtime_op_utility.h │ │ │ │ │ └── k210_sim_types.h │ │ │ │ ├── kernel_registry.h │ │ │ │ ├── model.h │ │ │ │ ├── neutral │ │ │ │ │ ├── neutral_ops_body.h │ │ │ │ │ └── neutral_sim_types.h │ │ │ │ ├── nnil.h │ │ │ │ ├── node_body.h │ │ │ │ ├── runtime_op.def │ │ │ │ ├── runtime_op.h │ │ │ │ ├── runtime_op_utility.h │ │ │ │ ├── span_reader.h │ │ │ │ └── target_interpreter.h │ │ │ ├── target_config.h │ │ │ └── targets │ │ │ │ └── target.h │ │ ├── nncase.cpp │ │ └── runtime │ │ │ ├── cpu │ │ │ └── cpu_ops.cpp │ │ │ ├── interpreter.cpp │ │ │ ├── k210 │ │ │ ├── k210_interpreter.cpp │ │ │ └── k210_ops.cpp │ │ │ ├── kernel_registry.cpp │ │ │ └── neutral │ │ │ └── neutral_ops.cpp │ └── third_party │ │ └── xtl │ │ ├── LICENSE │ │ ├── README.md │ │ └── include │ │ └── xtl │ │ ├── xspan.hpp │ │ └── xspan_impl.hpp │ ├── k210_arduino_version.h │ ├── misc.c │ ├── pgmspace.h │ ├── rt-thread │ ├── bsp │ │ ├── board.c │ │ └── drv_rtc.c │ ├── genlib.sh │ ├── include │ │ ├── CPU │ │ │ ├── cpuport.h │ │ │ └── tick.h │ │ ├── DeviceDrivers │ │ │ ├── drivers │ │ │ │ ├── rtc.h │ │ │ │ ├── serial.h │ │ │ │ └── serial_v2.h │ │ │ └── ipc │ │ │ │ ├── completion.h │ │ │ │ ├── dataqueue.h │ │ │ │ ├── pipe.h │ │ │ │ ├── poll.h │ │ │ │ ├── ringblk_buf.h │ │ │ │ ├── ringbuffer.h │ │ │ │ ├── waitqueue.h │ │ │ │ └── workqueue.h │ │ ├── bsp │ │ │ └── board.h │ │ ├── kernel │ │ │ ├── rtdbg.h │ │ │ ├── rtdebug.h │ │ │ ├── rtdef.h │ │ │ ├── rtdevice.h │ │ │ ├── rthw.h │ │ │ ├── rtm.h │ │ │ ├── rtservice.h │ │ │ └── rtthread.h │ │ └── libc │ │ │ ├── common │ │ │ ├── compiler_private.h │ │ │ ├── dirent.h │ │ │ ├── posix │ │ │ │ ├── ctype.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ └── wchar.h │ │ │ ├── sys │ │ │ │ ├── ioctl.h │ │ │ │ ├── select.h │ │ │ │ ├── signal.h │ │ │ │ ├── statfs.h │ │ │ │ ├── time.h │ │ │ │ ├── unistd.h │ │ │ │ └── vfs.h │ │ │ └── unistd.h │ │ │ ├── cplusplus │ │ │ ├── cxx_crt.h │ │ │ ├── cxx_lock.h │ │ │ ├── cxx_mail.h │ │ │ ├── cxx_mutex.h │ │ │ ├── cxx_queue.h │ │ │ ├── cxx_semaphore.h │ │ │ └── cxx_thread.h │ │ │ └── newlib │ │ │ ├── fcntl.h │ │ │ └── machine │ │ │ └── time.h │ ├── lds │ │ └── link.ld │ └── lib │ │ ├── .config │ │ ├── build.log │ │ ├── build_CPU.log │ │ ├── build_CPlusPlus.log │ │ ├── build_Compiler.log │ │ ├── build_DeviceDrivers.log │ │ ├── build_Kernel.log │ │ ├── libCPU_gcc.a │ │ ├── libCPlusPlus_gcc.a │ │ ├── libCompiler_gcc.a │ │ ├── libDeviceDrivers_gcc.a │ │ ├── libKernel_gcc.a │ │ └── rtconfig.h │ ├── stdlib_noniso.c │ ├── stdlib_noniso.h │ └── wiring.c ├── docs ├── Makefile ├── requirements.txt └── source │ ├── _static │ ├── auto-nums.css │ ├── board_config.png │ ├── custom-theme.css │ ├── example_upload.png │ ├── img │ │ ├── ch-flag.a61145a4.svg │ │ └── logo.2f7049e2.svg │ ├── install_guide_preferences.jpeg │ ├── install_k210_pkg.png │ ├── select_board.png │ ├── ticker_example.png │ └── transform.js │ ├── _templates │ ├── Fleft.html │ ├── FleftEn.html │ ├── Footer.html │ ├── FooterEn.html │ ├── Fright.html │ ├── FrightEn.html │ ├── content.html │ ├── layout.html │ ├── login.html │ ├── logo.html │ ├── nav.html │ └── versionsFlex.html │ ├── conf.py │ ├── exts │ └── sphinx_rtd_dark_mode │ │ ├── __init__.py │ │ ├── dark_mode_loader.py │ │ └── static │ │ ├── dark_mode_css │ │ ├── custom.css │ │ ├── dark.css │ │ └── general.css │ │ └── dark_mode_js │ │ ├── default_dark.js │ │ ├── default_light.js │ │ └── theme_switcher.js │ ├── favicon.ico │ ├── getting-started │ ├── getting-started.rst │ └── quick-start.rst │ ├── index.rst │ ├── libraries.rst │ └── libraries │ ├── aes.rst │ ├── camera.rst │ ├── i2s.rst │ ├── image.rst │ ├── kpu.rst │ ├── lcd.rst │ ├── ns2009.rst │ ├── serial.rst │ ├── sha256.rst │ ├── spi.rst │ ├── ticker.rst │ ├── wifi_esp_at.rst │ └── wire.rst ├── libraries ├── FFat │ ├── examples │ │ └── FFat_Test │ │ │ └── FFat_Test.ino │ ├── library.properties │ └── src │ │ ├── FFat.cpp │ │ └── FFat.h ├── FS │ ├── library.properties │ └── src │ │ ├── FS.cpp │ │ ├── FS.h │ │ ├── FSImpl.h │ │ ├── vfs_api.cpp │ │ └── vfs_api.h ├── GC0328 │ ├── examples │ │ └── screen_display │ │ │ └── screen_display.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GC0328.cpp │ │ └── GC0328.h ├── I2S │ ├── examples │ │ ├── play │ │ │ ├── incbin.h │ │ │ ├── play.ino │ │ │ └── vip.wav │ │ └── record │ │ │ └── record.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── I2S.cpp │ │ ├── I2S.h │ │ ├── I2SDoubleBuffer.cpp │ │ └── I2SDoubleBuffer.h ├── Image │ ├── examples │ │ ├── color_convert_test │ │ │ └── color_convert_test.ino │ │ ├── load_and_display │ │ │ └── load_and_display.ino │ │ └── save_camera_image │ │ │ └── save_camera_image.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Image.cpp │ │ ├── Image.h │ │ ├── LICENSE │ │ ├── image_cvt.h │ │ ├── stb_image.h │ │ └── stb_image_write.h ├── K210_8080 │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Bus8080.cpp │ │ └── Bus8080.h ├── K210_AES │ ├── examples │ │ └── aes_ecb_128_test │ │ │ └── aes_ecb_128_test.ino │ ├── library.properties │ └── src │ │ ├── AES.cpp │ │ └── AES.h ├── K210_CAMERA │ ├── library.properties │ └── src │ │ ├── BusDVP.cpp │ │ ├── BusDVP.h │ │ ├── Camera.cpp │ │ └── Camera.h ├── K210_KPU │ ├── examples │ │ ├── kpu_face_attribute │ │ │ └── kpu_face_attribute.ino │ │ ├── kpu_face_detect_320x240 │ │ │ └── kpu_face_detect_320x240.ino │ │ ├── kpu_face_detect_68lm │ │ │ └── kpu_face_detect_68lm.ino │ │ ├── kpu_face_mask_detect │ │ │ └── kpu_face_mask_detect.ino │ │ ├── kpu_face_recognization │ │ │ └── kpu_face_recognization.ino │ │ └── kpu_voc20_detect_320x256 │ │ │ └── kpu_voc20_detect_320x256.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── KPU.cpp │ │ ├── KPU.h │ │ ├── KPU_Face.cpp │ │ ├── KPU_Face.h │ │ ├── kpu_helper.c │ │ ├── kpu_helper.h │ │ ├── yolo2_region_layer.c │ │ └── yolo2_region_layer.h ├── K210_SHA256 │ ├── examples │ │ └── sha256_test │ │ │ └── sha256_test.ino │ ├── library.properties │ └── src │ │ ├── SHA256.cpp │ │ └── SHA256.h ├── NoePixelWrap │ ├── README.md │ ├── examples │ │ └── ws2812 │ │ │ └── ws2812.ino │ ├── library.properties │ └── src │ │ ├── NoePixelWrap.cpp │ │ ├── NoePixelWrap.h │ │ └── sysctl.h ├── OV2640 │ ├── examples │ │ └── screen_display │ │ │ └── screen_display.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── OV2640.cpp │ │ ├── OV2640.h │ │ └── ov2640_regs.h ├── SPI │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SPI.cpp │ │ └── SPI.h ├── SPIFFS │ ├── examples │ │ └── SPIFFS_Test │ │ │ └── SPIFFS_Test.ino │ ├── library.properties │ └── src │ │ ├── SPIFFS.cpp │ │ └── SPIFFS.h ├── ST7789V │ ├── examples │ │ └── test_rotation │ │ │ └── test_rotation.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── ST7789V.cpp │ │ └── ST7789V.h ├── Ticker │ ├── examples │ │ ├── Arguments │ │ │ └── Arguments.ino │ │ └── Blinker │ │ │ └── Blinker.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Ticker.cpp │ │ └── Ticker.h ├── TouchScreen │ ├── examples │ │ └── track │ │ │ └── track.ino │ ├── library.properties │ └── src │ │ ├── NS2009.cpp │ │ ├── NS2009.h │ │ ├── TouchScreen.cpp │ │ ├── TouchScreen.h │ │ └── ts_lib │ │ ├── event.c │ │ ├── mean.c │ │ ├── median.c │ │ ├── ts_lib.h │ │ ├── tscal.c │ │ └── tsfilter.c └── Wire │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── Wire.cpp │ └── Wire.h ├── package.json ├── package ├── package_k210_index.template.json └── release.sh ├── platform.txt ├── programmers.txt ├── tests ├── LICENSE ├── conftest.py ├── kflash │ ├── .github │ │ └── workflows │ │ │ └── main.yml │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.rst │ ├── __init__.py │ ├── kflash.py │ ├── package.json │ └── setup.py ├── pytest.ini ├── pytest_embedded │ ├── __init__.py │ ├── app.py │ ├── dut.py │ ├── log.py │ ├── plugin.py │ ├── unity.py │ └── utils.py ├── pytest_embedded_arduino │ ├── __init__.py │ ├── app.py │ └── serial.py ├── pytest_embedded_serial │ ├── __init__.py │ ├── dut.py │ └── serial.py ├── pytest_embedded_serial_k210 │ ├── README.txt │ ├── __init__.py │ └── serial.py ├── requirements.txt └── testcases │ ├── aes │ ├── aes.ino │ └── test_aes.py │ ├── camera │ ├── camera.ino │ └── test_camera.py │ ├── digital_io_loop │ ├── digital_io_loop.ino │ └── test_digital_io_loop.py │ ├── ffat │ ├── ffat.ino │ └── test_ffat.py │ ├── hello_world │ ├── hello_world.ino │ └── test_hello_world.py │ ├── kpu │ ├── face.c │ ├── kpu.ino │ └── test_kpu.py │ ├── sha256 │ ├── sha256.ino │ └── test_sha256.py │ ├── spiffs │ ├── cfg.json │ ├── spiffs.ino │ └── test_spiffs.py │ ├── uart_loop │ ├── test_uart_loop.py │ └── uart_loop.ino │ └── unity │ ├── test_unity.py │ └── unity.ino ├── tools ├── LICENSE ├── get.py ├── install-arduino-core-k210.sh ├── install-arduino-ide.sh ├── install-arduino-library.sh ├── merge_packages.py ├── on-push.sh ├── on-release.sh ├── sketch_utils.sh ├── tests_build.sh ├── tests_run.sh ├── tests_run_simple.sh └── update-version.sh └── variants ├── 01studio_k210 └── pins_arduino.h ├── README.md ├── alientek_dnk210 └── pins_arduino.h └── canaan_k1 └── pins_arduino.h /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/k210/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Arduino.h -------------------------------------------------------------------------------- /cores/k210/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Binary.h -------------------------------------------------------------------------------- /cores/k210/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Client.h -------------------------------------------------------------------------------- /cores/k210/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Common.cpp -------------------------------------------------------------------------------- /cores/k210/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Common.h -------------------------------------------------------------------------------- /cores/k210/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Compat.h -------------------------------------------------------------------------------- /cores/k210/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/HardwareSerial.cpp -------------------------------------------------------------------------------- /cores/k210/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/HardwareSerial.h -------------------------------------------------------------------------------- /cores/k210/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/IPAddress.cpp -------------------------------------------------------------------------------- /cores/k210/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/IPAddress.h -------------------------------------------------------------------------------- /cores/k210/Interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Interrupts.h -------------------------------------------------------------------------------- /cores/k210/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Main.cpp -------------------------------------------------------------------------------- /cores/k210/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Print.cpp -------------------------------------------------------------------------------- /cores/k210/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Print.h -------------------------------------------------------------------------------- /cores/k210/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Printable.h -------------------------------------------------------------------------------- /cores/k210/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/RingBuffer.h -------------------------------------------------------------------------------- /cores/k210/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Server.h -------------------------------------------------------------------------------- /cores/k210/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Stream.cpp -------------------------------------------------------------------------------- /cores/k210/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Stream.h -------------------------------------------------------------------------------- /cores/k210/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Tone.cpp -------------------------------------------------------------------------------- /cores/k210/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/Udp.h -------------------------------------------------------------------------------- /cores/k210/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/WCharacter.h -------------------------------------------------------------------------------- /cores/k210/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/WString.cpp -------------------------------------------------------------------------------- /cores/k210/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/WString.h -------------------------------------------------------------------------------- /cores/k210/components/compatible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/compatible.c -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/00history.txt -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/00readme.txt -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/LICENSE.txt -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/diskio.c -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/ff.c -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/ffsystem.c -------------------------------------------------------------------------------- /cores/k210/components/fatfs/FatFs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/FatFs/ffunicode.c -------------------------------------------------------------------------------- /cores/k210/components/fatfs/vfs_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/vfs_fat.c -------------------------------------------------------------------------------- /cores/k210/components/fatfs/vfs_fat_sdspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/fatfs/vfs_fat_sdspi.c -------------------------------------------------------------------------------- /cores/k210/components/include/compatible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/compatible.h -------------------------------------------------------------------------------- /cores/k210/components/include/espressif/esp_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/espressif/esp_err.h -------------------------------------------------------------------------------- /cores/k210/components/include/fatfs/esp_vfs_fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/fatfs/esp_vfs_fat.h -------------------------------------------------------------------------------- /cores/k210/components/include/fatfs/esp_vfs_fat_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/fatfs/esp_vfs_fat_conf.h -------------------------------------------------------------------------------- /cores/k210/components/include/fatfs/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/fatfs/fatfs/diskio.h -------------------------------------------------------------------------------- /cores/k210/components/include/fatfs/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/fatfs/fatfs/ff.h -------------------------------------------------------------------------------- /cores/k210/components/include/fatfs/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/fatfs/fatfs/ffconf.h -------------------------------------------------------------------------------- /cores/k210/components/include/sdcard/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/sdcard/sdcard.h -------------------------------------------------------------------------------- /cores/k210/components/include/spiffs/esp_spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/spiffs/esp_spiffs.h -------------------------------------------------------------------------------- /cores/k210/components/include/spiffs/k210_spiffs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/spiffs/k210_spiffs_config.h -------------------------------------------------------------------------------- /cores/k210/components/include/spiffs/spiffs/spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/spiffs/spiffs/spiffs.h -------------------------------------------------------------------------------- /cores/k210/components/include/spiffs/spiffs/spiffs_nucleus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/spiffs/spiffs/spiffs_nucleus.h -------------------------------------------------------------------------------- /cores/k210/components/include/spiffs/spiffs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/spiffs/spiffs_config.h -------------------------------------------------------------------------------- /cores/k210/components/include/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/unity/unity.h -------------------------------------------------------------------------------- /cores/k210/components/include/unity/unity_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/unity/unity_config.h -------------------------------------------------------------------------------- /cores/k210/components/include/unity/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/unity/unity_internals.h -------------------------------------------------------------------------------- /cores/k210/components/include/vfs/esp_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/include/vfs/esp_vfs.h -------------------------------------------------------------------------------- /cores/k210/components/sdcard/README: -------------------------------------------------------------------------------- 1 | https://github.com/Krasutski-zz/sdcard_spi_driver 2 | -------------------------------------------------------------------------------- /cores/k210/components/sdcard/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/sdcard/sdcard.c -------------------------------------------------------------------------------- /cores/k210/components/sdcard/sdcard_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/sdcard/sdcard_spi.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/LICENSE -------------------------------------------------------------------------------- /cores/k210/components/spiffs/esp_spiffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/esp_spiffs.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/LICENSE -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/README.md -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/spiffs_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/spiffs_cache.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/spiffs_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/spiffs_check.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/spiffs_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/spiffs_gc.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/spiffs_hydrogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/spiffs_hydrogen.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs/spiffs_nucleus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs/spiffs_nucleus.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs_api.c -------------------------------------------------------------------------------- /cores/k210/components/spiffs/spiffs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/spiffs/spiffs_api.h -------------------------------------------------------------------------------- /cores/k210/components/unity/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/unity/src/LICENSE.txt -------------------------------------------------------------------------------- /cores/k210/components/unity/src/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/unity/src/port.cpp -------------------------------------------------------------------------------- /cores/k210/components/unity/src/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/unity/src/unity.c -------------------------------------------------------------------------------- /cores/k210/components/vfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/vfs/LICENSE -------------------------------------------------------------------------------- /cores/k210/components/vfs/esp_vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/vfs/esp_vfs.c -------------------------------------------------------------------------------- /cores/k210/components/vfs/esp_vfs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/vfs/esp_vfs_common.h -------------------------------------------------------------------------------- /cores/k210/components/vfs/esp_vfs_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/components/vfs/esp_vfs_private.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-dma.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-dma.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-flash.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-flash.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-fpioa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-fpioa.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-fpioa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-fpioa.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-gpio.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-gpio.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-soft-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-soft-spi.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-soft-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-soft-spi.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-tft-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-tft-bus.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-tft-bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-tft-bus.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-timer.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-timer.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-uart.c -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal-uart.h -------------------------------------------------------------------------------- /cores/k210/k210-hal/k210-hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-hal/k210-hal.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/bsp/k210_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/bsp/k210_atomic.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/bsp/k210_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/bsp/k210_bsp.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/bsp/k210_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/bsp/k210_encoding.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/bsp/k210_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/bsp/k210_interrupt.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/bsp/k210_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/bsp/k210_lock.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/bsp/k210_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/bsp/k210_platform.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_aes.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_aes.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_clint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_clint.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_clint.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_dmac.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_dmac.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_dvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_dvp.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_dvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_dvp.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_fft.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_fft.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_fpioa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_fpioa.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_fpioa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_fpioa.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_gpio.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_gpio.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_gpio_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_gpio_common.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_gpiohs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_gpiohs.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_gpiohs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_gpiohs.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_i2c.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_i2c.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_i2s.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_i2s.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_io.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_kpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_kpu.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_kpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_kpu.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_plic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_plic.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_plic.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_pwm.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_pwm.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_rtc.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_rtc.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_sha256.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_sha256.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_spi.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_spi.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_sysctl.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_sysctl.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_timer.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_timer.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_uart.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_uart.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_uarths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_uarths.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_uarths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_uarths.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_utils.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_utils.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_wdt.c -------------------------------------------------------------------------------- /cores/k210/k210-sdk/drivers/k210_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/drivers/k210_wdt.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/.clang-format -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/CMakeLists.txt -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/datatypes.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/io_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/io_utils.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/kernels/cpu/cpu_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/kernels/cpu/cpu_kernels.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/kernels/k210/k210_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/kernels/k210/k210_kernels.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/kernels/kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/kernels/kernel_utils.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/kernels/neutral/neutral_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/kernels/neutral/neutral_kernels.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/kernels/riscv/neutral_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/kernels/riscv/neutral_kernels.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/nncase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/nncase.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/binary_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/binary_reader.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/binary_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/binary_writer.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/cpu/cpu_ops_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/cpu/cpu_ops_body.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/cpu/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/cpu/interpreter.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/interpreter.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/k210/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/k210/interpreter.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/k210/k210_ops_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/k210/k210_ops_body.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/k210/k210_runtime_op_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/k210/k210_runtime_op_utility.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/k210/k210_sim_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/k210/k210_sim_types.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/kernel_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/kernel_registry.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/model.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/neutral/neutral_ops_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/neutral/neutral_ops_body.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/neutral/neutral_sim_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/neutral/neutral_sim_types.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/nnil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/nnil.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/node_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/node_body.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/runtime_op.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/runtime_op.def -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/runtime_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/runtime_op.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/runtime_op_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/runtime_op_utility.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/span_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/span_reader.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/runtime/target_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/runtime/target_interpreter.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/target_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/target_config.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/include/targets/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/include/targets/target.h -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/nncase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/nncase.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/runtime/cpu/cpu_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/runtime/cpu/cpu_ops.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/runtime/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/runtime/interpreter.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/runtime/k210/k210_interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/runtime/k210/k210_interpreter.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/runtime/k210/k210_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/runtime/k210/k210_ops.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/runtime/kernel_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/runtime/kernel_registry.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/nncase/runtime/neutral/neutral_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/nncase/runtime/neutral/neutral_ops.cpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/third_party/xtl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/third_party/xtl/LICENSE -------------------------------------------------------------------------------- /cores/k210/k210-sdk/third_party/xtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/third_party/xtl/README.md -------------------------------------------------------------------------------- /cores/k210/k210-sdk/third_party/xtl/include/xtl/xspan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/third_party/xtl/include/xtl/xspan.hpp -------------------------------------------------------------------------------- /cores/k210/k210-sdk/third_party/xtl/include/xtl/xspan_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210-sdk/third_party/xtl/include/xtl/xspan_impl.hpp -------------------------------------------------------------------------------- /cores/k210/k210_arduino_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/k210_arduino_version.h -------------------------------------------------------------------------------- /cores/k210/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/misc.c -------------------------------------------------------------------------------- /cores/k210/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/pgmspace.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/bsp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/bsp/board.c -------------------------------------------------------------------------------- /cores/k210/rt-thread/bsp/drv_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/bsp/drv_rtc.c -------------------------------------------------------------------------------- /cores/k210/rt-thread/genlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/genlib.sh -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/CPU/cpuport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/CPU/cpuport.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/CPU/tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/CPU/tick.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/drivers/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/drivers/rtc.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/drivers/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/drivers/serial.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/drivers/serial_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/drivers/serial_v2.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/completion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/completion.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/dataqueue.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/pipe.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/poll.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/ringblk_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/ringblk_buf.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/ringbuffer.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/waitqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/waitqueue.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/DeviceDrivers/ipc/workqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/DeviceDrivers/ipc/workqueue.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/bsp/board.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtdbg.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtdebug.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtdef.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtdevice.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rthw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rthw.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtm.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtservice.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/kernel/rtthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/kernel/rtthread.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/compiler_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/compiler_private.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/dirent.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/posix/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/posix/ctype.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/posix/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/posix/stdio.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/posix/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/posix/stdlib.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/posix/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/posix/string.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/posix/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/posix/wchar.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/ioctl.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/select.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/signal.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/statfs.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/time.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/unistd.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/sys/vfs.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/common/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/common/unistd.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_crt.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_lock.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_mail.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_mutex.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_queue.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_semaphore.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/cplusplus/cxx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/cplusplus/cxx_thread.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/newlib/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/newlib/fcntl.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/include/libc/newlib/machine/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/include/libc/newlib/machine/time.h -------------------------------------------------------------------------------- /cores/k210/rt-thread/lds/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lds/link.ld -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/.config -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/build.log -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/build_CPU.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/build_CPU.log -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/build_CPlusPlus.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/build_CPlusPlus.log -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/build_Compiler.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/build_Compiler.log -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/build_DeviceDrivers.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/build_DeviceDrivers.log -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/build_Kernel.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/build_Kernel.log -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/libCPU_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/libCPU_gcc.a -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/libCPlusPlus_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/libCPlusPlus_gcc.a -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/libCompiler_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/libCompiler_gcc.a -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/libDeviceDrivers_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/libDeviceDrivers_gcc.a -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/libKernel_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/libKernel_gcc.a -------------------------------------------------------------------------------- /cores/k210/rt-thread/lib/rtconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/rt-thread/lib/rtconfig.h -------------------------------------------------------------------------------- /cores/k210/stdlib_noniso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/stdlib_noniso.c -------------------------------------------------------------------------------- /cores/k210/stdlib_noniso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/stdlib_noniso.h -------------------------------------------------------------------------------- /cores/k210/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/cores/k210/wiring.c -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/auto-nums.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/auto-nums.css -------------------------------------------------------------------------------- /docs/source/_static/board_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/board_config.png -------------------------------------------------------------------------------- /docs/source/_static/custom-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/custom-theme.css -------------------------------------------------------------------------------- /docs/source/_static/example_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/example_upload.png -------------------------------------------------------------------------------- /docs/source/_static/img/ch-flag.a61145a4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/img/ch-flag.a61145a4.svg -------------------------------------------------------------------------------- /docs/source/_static/img/logo.2f7049e2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/img/logo.2f7049e2.svg -------------------------------------------------------------------------------- /docs/source/_static/install_guide_preferences.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/install_guide_preferences.jpeg -------------------------------------------------------------------------------- /docs/source/_static/install_k210_pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/install_k210_pkg.png -------------------------------------------------------------------------------- /docs/source/_static/select_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/select_board.png -------------------------------------------------------------------------------- /docs/source/_static/ticker_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/ticker_example.png -------------------------------------------------------------------------------- /docs/source/_static/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_static/transform.js -------------------------------------------------------------------------------- /docs/source/_templates/Fleft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/Fleft.html -------------------------------------------------------------------------------- /docs/source/_templates/FleftEn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/FleftEn.html -------------------------------------------------------------------------------- /docs/source/_templates/Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/Footer.html -------------------------------------------------------------------------------- /docs/source/_templates/FooterEn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/FooterEn.html -------------------------------------------------------------------------------- /docs/source/_templates/Fright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/Fright.html -------------------------------------------------------------------------------- /docs/source/_templates/FrightEn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/FrightEn.html -------------------------------------------------------------------------------- /docs/source/_templates/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/content.html -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/login.html -------------------------------------------------------------------------------- /docs/source/_templates/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/logo.html -------------------------------------------------------------------------------- /docs/source/_templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/nav.html -------------------------------------------------------------------------------- /docs/source/_templates/versionsFlex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/_templates/versionsFlex.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/__init__.py -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/dark_mode_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/dark_mode_loader.py -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_css/custom.css -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_css/dark.css -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_css/general.css -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_js/default_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_js/default_dark.js -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_js/default_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_js/default_light.js -------------------------------------------------------------------------------- /docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_js/theme_switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/exts/sphinx_rtd_dark_mode/static/dark_mode_js/theme_switcher.js -------------------------------------------------------------------------------- /docs/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/favicon.ico -------------------------------------------------------------------------------- /docs/source/getting-started/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/getting-started/getting-started.rst -------------------------------------------------------------------------------- /docs/source/getting-started/quick-start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/getting-started/quick-start.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries.rst -------------------------------------------------------------------------------- /docs/source/libraries/aes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/aes.rst -------------------------------------------------------------------------------- /docs/source/libraries/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/camera.rst -------------------------------------------------------------------------------- /docs/source/libraries/i2s.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/i2s.rst -------------------------------------------------------------------------------- /docs/source/libraries/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/image.rst -------------------------------------------------------------------------------- /docs/source/libraries/kpu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/kpu.rst -------------------------------------------------------------------------------- /docs/source/libraries/lcd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/lcd.rst -------------------------------------------------------------------------------- /docs/source/libraries/ns2009.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/ns2009.rst -------------------------------------------------------------------------------- /docs/source/libraries/serial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/serial.rst -------------------------------------------------------------------------------- /docs/source/libraries/sha256.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/sha256.rst -------------------------------------------------------------------------------- /docs/source/libraries/spi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/spi.rst -------------------------------------------------------------------------------- /docs/source/libraries/ticker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/ticker.rst -------------------------------------------------------------------------------- /docs/source/libraries/wifi_esp_at.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/wifi_esp_at.rst -------------------------------------------------------------------------------- /docs/source/libraries/wire.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/docs/source/libraries/wire.rst -------------------------------------------------------------------------------- /libraries/FFat/examples/FFat_Test/FFat_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FFat/examples/FFat_Test/FFat_Test.ino -------------------------------------------------------------------------------- /libraries/FFat/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FFat/library.properties -------------------------------------------------------------------------------- /libraries/FFat/src/FFat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FFat/src/FFat.cpp -------------------------------------------------------------------------------- /libraries/FFat/src/FFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FFat/src/FFat.h -------------------------------------------------------------------------------- /libraries/FS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FS/library.properties -------------------------------------------------------------------------------- /libraries/FS/src/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FS/src/FS.cpp -------------------------------------------------------------------------------- /libraries/FS/src/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FS/src/FS.h -------------------------------------------------------------------------------- /libraries/FS/src/FSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FS/src/FSImpl.h -------------------------------------------------------------------------------- /libraries/FS/src/vfs_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FS/src/vfs_api.cpp -------------------------------------------------------------------------------- /libraries/FS/src/vfs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/FS/src/vfs_api.h -------------------------------------------------------------------------------- /libraries/GC0328/examples/screen_display/screen_display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/GC0328/examples/screen_display/screen_display.ino -------------------------------------------------------------------------------- /libraries/GC0328/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/GC0328/keywords.txt -------------------------------------------------------------------------------- /libraries/GC0328/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/GC0328/library.properties -------------------------------------------------------------------------------- /libraries/GC0328/src/GC0328.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/GC0328/src/GC0328.cpp -------------------------------------------------------------------------------- /libraries/GC0328/src/GC0328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/GC0328/src/GC0328.h -------------------------------------------------------------------------------- /libraries/I2S/examples/play/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/examples/play/incbin.h -------------------------------------------------------------------------------- /libraries/I2S/examples/play/play.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/examples/play/play.ino -------------------------------------------------------------------------------- /libraries/I2S/examples/play/vip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/examples/play/vip.wav -------------------------------------------------------------------------------- /libraries/I2S/examples/record/record.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/examples/record/record.ino -------------------------------------------------------------------------------- /libraries/I2S/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/keywords.txt -------------------------------------------------------------------------------- /libraries/I2S/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/library.properties -------------------------------------------------------------------------------- /libraries/I2S/src/I2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/src/I2S.cpp -------------------------------------------------------------------------------- /libraries/I2S/src/I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/src/I2S.h -------------------------------------------------------------------------------- /libraries/I2S/src/I2SDoubleBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/src/I2SDoubleBuffer.cpp -------------------------------------------------------------------------------- /libraries/I2S/src/I2SDoubleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/I2S/src/I2SDoubleBuffer.h -------------------------------------------------------------------------------- /libraries/Image/examples/color_convert_test/color_convert_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/examples/color_convert_test/color_convert_test.ino -------------------------------------------------------------------------------- /libraries/Image/examples/load_and_display/load_and_display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/examples/load_and_display/load_and_display.ino -------------------------------------------------------------------------------- /libraries/Image/examples/save_camera_image/save_camera_image.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/examples/save_camera_image/save_camera_image.ino -------------------------------------------------------------------------------- /libraries/Image/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/keywords.txt -------------------------------------------------------------------------------- /libraries/Image/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/library.properties -------------------------------------------------------------------------------- /libraries/Image/src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/src/Image.cpp -------------------------------------------------------------------------------- /libraries/Image/src/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/src/Image.h -------------------------------------------------------------------------------- /libraries/Image/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/src/LICENSE -------------------------------------------------------------------------------- /libraries/Image/src/image_cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/src/image_cvt.h -------------------------------------------------------------------------------- /libraries/Image/src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/src/stb_image.h -------------------------------------------------------------------------------- /libraries/Image/src/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Image/src/stb_image_write.h -------------------------------------------------------------------------------- /libraries/K210_8080/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_8080/keywords.txt -------------------------------------------------------------------------------- /libraries/K210_8080/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_8080/library.properties -------------------------------------------------------------------------------- /libraries/K210_8080/src/Bus8080.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_8080/src/Bus8080.cpp -------------------------------------------------------------------------------- /libraries/K210_8080/src/Bus8080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_8080/src/Bus8080.h -------------------------------------------------------------------------------- /libraries/K210_AES/examples/aes_ecb_128_test/aes_ecb_128_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_AES/examples/aes_ecb_128_test/aes_ecb_128_test.ino -------------------------------------------------------------------------------- /libraries/K210_AES/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_AES/library.properties -------------------------------------------------------------------------------- /libraries/K210_AES/src/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_AES/src/AES.cpp -------------------------------------------------------------------------------- /libraries/K210_AES/src/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_AES/src/AES.h -------------------------------------------------------------------------------- /libraries/K210_CAMERA/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_CAMERA/library.properties -------------------------------------------------------------------------------- /libraries/K210_CAMERA/src/BusDVP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_CAMERA/src/BusDVP.cpp -------------------------------------------------------------------------------- /libraries/K210_CAMERA/src/BusDVP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_CAMERA/src/BusDVP.h -------------------------------------------------------------------------------- /libraries/K210_CAMERA/src/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_CAMERA/src/Camera.cpp -------------------------------------------------------------------------------- /libraries/K210_CAMERA/src/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_CAMERA/src/Camera.h -------------------------------------------------------------------------------- /libraries/K210_KPU/examples/kpu_face_attribute/kpu_face_attribute.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/examples/kpu_face_attribute/kpu_face_attribute.ino -------------------------------------------------------------------------------- /libraries/K210_KPU/examples/kpu_face_detect_320x240/kpu_face_detect_320x240.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/examples/kpu_face_detect_320x240/kpu_face_detect_320x240.ino -------------------------------------------------------------------------------- /libraries/K210_KPU/examples/kpu_face_detect_68lm/kpu_face_detect_68lm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/examples/kpu_face_detect_68lm/kpu_face_detect_68lm.ino -------------------------------------------------------------------------------- /libraries/K210_KPU/examples/kpu_face_mask_detect/kpu_face_mask_detect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/examples/kpu_face_mask_detect/kpu_face_mask_detect.ino -------------------------------------------------------------------------------- /libraries/K210_KPU/examples/kpu_face_recognization/kpu_face_recognization.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/examples/kpu_face_recognization/kpu_face_recognization.ino -------------------------------------------------------------------------------- /libraries/K210_KPU/examples/kpu_voc20_detect_320x256/kpu_voc20_detect_320x256.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/examples/kpu_voc20_detect_320x256/kpu_voc20_detect_320x256.ino -------------------------------------------------------------------------------- /libraries/K210_KPU/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/keywords.txt -------------------------------------------------------------------------------- /libraries/K210_KPU/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/library.properties -------------------------------------------------------------------------------- /libraries/K210_KPU/src/KPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/KPU.cpp -------------------------------------------------------------------------------- /libraries/K210_KPU/src/KPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/KPU.h -------------------------------------------------------------------------------- /libraries/K210_KPU/src/KPU_Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/KPU_Face.cpp -------------------------------------------------------------------------------- /libraries/K210_KPU/src/KPU_Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/KPU_Face.h -------------------------------------------------------------------------------- /libraries/K210_KPU/src/kpu_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/kpu_helper.c -------------------------------------------------------------------------------- /libraries/K210_KPU/src/kpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/kpu_helper.h -------------------------------------------------------------------------------- /libraries/K210_KPU/src/yolo2_region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/yolo2_region_layer.c -------------------------------------------------------------------------------- /libraries/K210_KPU/src/yolo2_region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_KPU/src/yolo2_region_layer.h -------------------------------------------------------------------------------- /libraries/K210_SHA256/examples/sha256_test/sha256_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_SHA256/examples/sha256_test/sha256_test.ino -------------------------------------------------------------------------------- /libraries/K210_SHA256/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_SHA256/library.properties -------------------------------------------------------------------------------- /libraries/K210_SHA256/src/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_SHA256/src/SHA256.cpp -------------------------------------------------------------------------------- /libraries/K210_SHA256/src/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/K210_SHA256/src/SHA256.h -------------------------------------------------------------------------------- /libraries/NoePixelWrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/NoePixelWrap/README.md -------------------------------------------------------------------------------- /libraries/NoePixelWrap/examples/ws2812/ws2812.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/NoePixelWrap/examples/ws2812/ws2812.ino -------------------------------------------------------------------------------- /libraries/NoePixelWrap/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/NoePixelWrap/library.properties -------------------------------------------------------------------------------- /libraries/NoePixelWrap/src/NoePixelWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/NoePixelWrap/src/NoePixelWrap.cpp -------------------------------------------------------------------------------- /libraries/NoePixelWrap/src/NoePixelWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/NoePixelWrap/src/NoePixelWrap.h -------------------------------------------------------------------------------- /libraries/NoePixelWrap/src/sysctl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "k210-hal.h" 4 | -------------------------------------------------------------------------------- /libraries/OV2640/examples/screen_display/screen_display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/OV2640/examples/screen_display/screen_display.ino -------------------------------------------------------------------------------- /libraries/OV2640/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/OV2640/keywords.txt -------------------------------------------------------------------------------- /libraries/OV2640/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/OV2640/library.properties -------------------------------------------------------------------------------- /libraries/OV2640/src/OV2640.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/OV2640/src/OV2640.cpp -------------------------------------------------------------------------------- /libraries/OV2640/src/OV2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/OV2640/src/OV2640.h -------------------------------------------------------------------------------- /libraries/OV2640/src/ov2640_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/OV2640/src/ov2640_regs.h -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /libraries/SPIFFS/examples/SPIFFS_Test/SPIFFS_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPIFFS/examples/SPIFFS_Test/SPIFFS_Test.ino -------------------------------------------------------------------------------- /libraries/SPIFFS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPIFFS/library.properties -------------------------------------------------------------------------------- /libraries/SPIFFS/src/SPIFFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPIFFS/src/SPIFFS.cpp -------------------------------------------------------------------------------- /libraries/SPIFFS/src/SPIFFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/SPIFFS/src/SPIFFS.h -------------------------------------------------------------------------------- /libraries/ST7789V/examples/test_rotation/test_rotation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/ST7789V/examples/test_rotation/test_rotation.ino -------------------------------------------------------------------------------- /libraries/ST7789V/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/ST7789V/keywords.txt -------------------------------------------------------------------------------- /libraries/ST7789V/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/ST7789V/library.properties -------------------------------------------------------------------------------- /libraries/ST7789V/src/ST7789V.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/ST7789V/src/ST7789V.cpp -------------------------------------------------------------------------------- /libraries/ST7789V/src/ST7789V.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/ST7789V/src/ST7789V.h -------------------------------------------------------------------------------- /libraries/Ticker/examples/Arguments/Arguments.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Ticker/examples/Arguments/Arguments.ino -------------------------------------------------------------------------------- /libraries/Ticker/examples/Blinker/Blinker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Ticker/examples/Blinker/Blinker.ino -------------------------------------------------------------------------------- /libraries/Ticker/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Ticker/keywords.txt -------------------------------------------------------------------------------- /libraries/Ticker/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Ticker/library.properties -------------------------------------------------------------------------------- /libraries/Ticker/src/Ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Ticker/src/Ticker.cpp -------------------------------------------------------------------------------- /libraries/Ticker/src/Ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Ticker/src/Ticker.h -------------------------------------------------------------------------------- /libraries/TouchScreen/examples/track/track.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/examples/track/track.ino -------------------------------------------------------------------------------- /libraries/TouchScreen/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/library.properties -------------------------------------------------------------------------------- /libraries/TouchScreen/src/NS2009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/NS2009.cpp -------------------------------------------------------------------------------- /libraries/TouchScreen/src/NS2009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/NS2009.h -------------------------------------------------------------------------------- /libraries/TouchScreen/src/TouchScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/TouchScreen.cpp -------------------------------------------------------------------------------- /libraries/TouchScreen/src/TouchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/TouchScreen.h -------------------------------------------------------------------------------- /libraries/TouchScreen/src/ts_lib/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/ts_lib/event.c -------------------------------------------------------------------------------- /libraries/TouchScreen/src/ts_lib/mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/ts_lib/mean.c -------------------------------------------------------------------------------- /libraries/TouchScreen/src/ts_lib/median.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/ts_lib/median.c -------------------------------------------------------------------------------- /libraries/TouchScreen/src/ts_lib/ts_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/ts_lib/ts_lib.h -------------------------------------------------------------------------------- /libraries/TouchScreen/src/ts_lib/tscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/ts_lib/tscal.c -------------------------------------------------------------------------------- /libraries/TouchScreen/src/ts_lib/tsfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/TouchScreen/src/ts_lib/tsfilter.c -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/package.json -------------------------------------------------------------------------------- /package/package_k210_index.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/package/package_k210_index.template.json -------------------------------------------------------------------------------- /package/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/package/release.sh -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/programmers.txt -------------------------------------------------------------------------------- /tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/LICENSE -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/kflash/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/.github/workflows/main.yml -------------------------------------------------------------------------------- /tests/kflash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/.gitignore -------------------------------------------------------------------------------- /tests/kflash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/.travis.yml -------------------------------------------------------------------------------- /tests/kflash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/LICENSE -------------------------------------------------------------------------------- /tests/kflash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/README.rst -------------------------------------------------------------------------------- /tests/kflash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/__init__.py -------------------------------------------------------------------------------- /tests/kflash/kflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/kflash.py -------------------------------------------------------------------------------- /tests/kflash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/package.json -------------------------------------------------------------------------------- /tests/kflash/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/kflash/setup.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/pytest_embedded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/__init__.py -------------------------------------------------------------------------------- /tests/pytest_embedded/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/app.py -------------------------------------------------------------------------------- /tests/pytest_embedded/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/dut.py -------------------------------------------------------------------------------- /tests/pytest_embedded/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/log.py -------------------------------------------------------------------------------- /tests/pytest_embedded/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/plugin.py -------------------------------------------------------------------------------- /tests/pytest_embedded/unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/unity.py -------------------------------------------------------------------------------- /tests/pytest_embedded/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded/utils.py -------------------------------------------------------------------------------- /tests/pytest_embedded_arduino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_arduino/__init__.py -------------------------------------------------------------------------------- /tests/pytest_embedded_arduino/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_arduino/app.py -------------------------------------------------------------------------------- /tests/pytest_embedded_arduino/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_arduino/serial.py -------------------------------------------------------------------------------- /tests/pytest_embedded_serial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_serial/__init__.py -------------------------------------------------------------------------------- /tests/pytest_embedded_serial/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_serial/dut.py -------------------------------------------------------------------------------- /tests/pytest_embedded_serial/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_serial/serial.py -------------------------------------------------------------------------------- /tests/pytest_embedded_serial_k210/README.txt: -------------------------------------------------------------------------------- 1 | This is copy from pytest_embedded_serial_esp -------------------------------------------------------------------------------- /tests/pytest_embedded_serial_k210/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_serial_k210/__init__.py -------------------------------------------------------------------------------- /tests/pytest_embedded_serial_k210/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/pytest_embedded_serial_k210/serial.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/testcases/aes/aes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/aes/aes.ino -------------------------------------------------------------------------------- /tests/testcases/aes/test_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/aes/test_aes.py -------------------------------------------------------------------------------- /tests/testcases/camera/camera.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/camera/camera.ino -------------------------------------------------------------------------------- /tests/testcases/camera/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/camera/test_camera.py -------------------------------------------------------------------------------- /tests/testcases/digital_io_loop/digital_io_loop.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/digital_io_loop/digital_io_loop.ino -------------------------------------------------------------------------------- /tests/testcases/digital_io_loop/test_digital_io_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/digital_io_loop/test_digital_io_loop.py -------------------------------------------------------------------------------- /tests/testcases/ffat/ffat.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/ffat/ffat.ino -------------------------------------------------------------------------------- /tests/testcases/ffat/test_ffat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/ffat/test_ffat.py -------------------------------------------------------------------------------- /tests/testcases/hello_world/hello_world.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/hello_world/hello_world.ino -------------------------------------------------------------------------------- /tests/testcases/hello_world/test_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/hello_world/test_hello_world.py -------------------------------------------------------------------------------- /tests/testcases/kpu/face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/kpu/face.c -------------------------------------------------------------------------------- /tests/testcases/kpu/kpu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/kpu/kpu.ino -------------------------------------------------------------------------------- /tests/testcases/kpu/test_kpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/kpu/test_kpu.py -------------------------------------------------------------------------------- /tests/testcases/sha256/sha256.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/sha256/sha256.ino -------------------------------------------------------------------------------- /tests/testcases/sha256/test_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/sha256/test_sha256.py -------------------------------------------------------------------------------- /tests/testcases/spiffs/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/spiffs/cfg.json -------------------------------------------------------------------------------- /tests/testcases/spiffs/spiffs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/spiffs/spiffs.ino -------------------------------------------------------------------------------- /tests/testcases/spiffs/test_spiffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/spiffs/test_spiffs.py -------------------------------------------------------------------------------- /tests/testcases/uart_loop/test_uart_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/uart_loop/test_uart_loop.py -------------------------------------------------------------------------------- /tests/testcases/uart_loop/uart_loop.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/uart_loop/uart_loop.ino -------------------------------------------------------------------------------- /tests/testcases/unity/test_unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/unity/test_unity.py -------------------------------------------------------------------------------- /tests/testcases/unity/unity.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tests/testcases/unity/unity.ino -------------------------------------------------------------------------------- /tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/LICENSE -------------------------------------------------------------------------------- /tools/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/get.py -------------------------------------------------------------------------------- /tools/install-arduino-core-k210.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/install-arduino-core-k210.sh -------------------------------------------------------------------------------- /tools/install-arduino-ide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/install-arduino-ide.sh -------------------------------------------------------------------------------- /tools/install-arduino-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/install-arduino-library.sh -------------------------------------------------------------------------------- /tools/merge_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/merge_packages.py -------------------------------------------------------------------------------- /tools/on-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/on-push.sh -------------------------------------------------------------------------------- /tools/on-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/on-release.sh -------------------------------------------------------------------------------- /tools/sketch_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/sketch_utils.sh -------------------------------------------------------------------------------- /tools/tests_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/tests_build.sh -------------------------------------------------------------------------------- /tools/tests_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/tests_run.sh -------------------------------------------------------------------------------- /tools/tests_run_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/tests_run_simple.sh -------------------------------------------------------------------------------- /tools/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/tools/update-version.sh -------------------------------------------------------------------------------- /variants/01studio_k210/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/variants/01studio_k210/pins_arduino.h -------------------------------------------------------------------------------- /variants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/variants/README.md -------------------------------------------------------------------------------- /variants/alientek_dnk210/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/variants/alientek_dnk210/pins_arduino.h -------------------------------------------------------------------------------- /variants/canaan_k1/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/arduino-k210/HEAD/variants/canaan_k1/pins_arduino.h --------------------------------------------------------------------------------