├── .bookignore ├── .gitignore ├── .markdownlint.json ├── .travis.yml ├── CNAME ├── LANGS.md ├── LICENSE ├── README.md ├── assets ├── arduino.png ├── css │ └── custom_theme.css ├── dfu_zadig.png ├── examples │ ├── XnViewMP.png │ ├── how_to_install_dfu.png │ ├── how_to_use_dfu.png │ └── potplayer.png ├── favicon.ico ├── icon_sipeed.png ├── icon_sipeed2.png ├── icon_sipeed_arduino.png ├── longan_nano.jpg ├── longan_nano_pinout_v1.1.0_w5676_h4000_large.png ├── longan_pio_debug.jpg ├── pio_complie.png ├── pio_debug_longan.png ├── pio_ini_cfg.png ├── pio_install_add_gd32v_step1.png ├── pio_install_add_gd32v_step2.png ├── pio_install_add_gd32v_step3.png ├── pio_install_gd32v.png ├── pio_open_rvlink.png ├── pio_upload.png └── sipeed_longan_logo.jpg ├── book.json ├── deploy.sh ├── en ├── README.md ├── SUMMARY.md ├── _layouts │ └── website │ │ ├── header.html │ │ └── page.html ├── book.json ├── get_started │ ├── blink.md │ ├── debug.md │ ├── pio.md │ ├── rv-link.md │ └── sipeed-debugger.md └── styles │ ├── website.css │ └── website.less ├── gulpfile.js ├── index.html ├── index_zh.html ├── package.json ├── serve.sh ├── serve_daemon.sh └── zh ├── README.md ├── SUMMARY.md ├── _layouts └── website │ ├── header.html │ └── page.html ├── book.json ├── examples ├── badapple.md └── printf.md ├── get_started ├── blink.md ├── debug.md ├── pio.md ├── rv-link.md └── sipeed-debugger.md └── styles ├── website.css └── website.less /.bookignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/.bookignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | longan.sipeed.com -------------------------------------------------------------------------------- /LANGS.md: -------------------------------------------------------------------------------- 1 | - [English](/en) 2 | - [中文](/zh) 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/README.md -------------------------------------------------------------------------------- /assets/arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/arduino.png -------------------------------------------------------------------------------- /assets/css/custom_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/css/custom_theme.css -------------------------------------------------------------------------------- /assets/dfu_zadig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/dfu_zadig.png -------------------------------------------------------------------------------- /assets/examples/XnViewMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/examples/XnViewMP.png -------------------------------------------------------------------------------- /assets/examples/how_to_install_dfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/examples/how_to_install_dfu.png -------------------------------------------------------------------------------- /assets/examples/how_to_use_dfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/examples/how_to_use_dfu.png -------------------------------------------------------------------------------- /assets/examples/potplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/examples/potplayer.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/icon_sipeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/icon_sipeed.png -------------------------------------------------------------------------------- /assets/icon_sipeed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/icon_sipeed2.png -------------------------------------------------------------------------------- /assets/icon_sipeed_arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/icon_sipeed_arduino.png -------------------------------------------------------------------------------- /assets/longan_nano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/longan_nano.jpg -------------------------------------------------------------------------------- /assets/longan_nano_pinout_v1.1.0_w5676_h4000_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/longan_nano_pinout_v1.1.0_w5676_h4000_large.png -------------------------------------------------------------------------------- /assets/longan_pio_debug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/longan_pio_debug.jpg -------------------------------------------------------------------------------- /assets/pio_complie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_complie.png -------------------------------------------------------------------------------- /assets/pio_debug_longan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_debug_longan.png -------------------------------------------------------------------------------- /assets/pio_ini_cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_ini_cfg.png -------------------------------------------------------------------------------- /assets/pio_install_add_gd32v_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_install_add_gd32v_step1.png -------------------------------------------------------------------------------- /assets/pio_install_add_gd32v_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_install_add_gd32v_step2.png -------------------------------------------------------------------------------- /assets/pio_install_add_gd32v_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_install_add_gd32v_step3.png -------------------------------------------------------------------------------- /assets/pio_install_gd32v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_install_gd32v.png -------------------------------------------------------------------------------- /assets/pio_open_rvlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_open_rvlink.png -------------------------------------------------------------------------------- /assets/pio_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/pio_upload.png -------------------------------------------------------------------------------- /assets/sipeed_longan_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/assets/sipeed_longan_logo.jpg -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/book.json -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/deploy.sh -------------------------------------------------------------------------------- /en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/README.md -------------------------------------------------------------------------------- /en/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/SUMMARY.md -------------------------------------------------------------------------------- /en/_layouts/website/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/_layouts/website/header.html -------------------------------------------------------------------------------- /en/_layouts/website/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/_layouts/website/page.html -------------------------------------------------------------------------------- /en/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/book.json -------------------------------------------------------------------------------- /en/get_started/blink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/get_started/blink.md -------------------------------------------------------------------------------- /en/get_started/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/get_started/debug.md -------------------------------------------------------------------------------- /en/get_started/pio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/get_started/pio.md -------------------------------------------------------------------------------- /en/get_started/rv-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/get_started/rv-link.md -------------------------------------------------------------------------------- /en/get_started/sipeed-debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/get_started/sipeed-debugger.md -------------------------------------------------------------------------------- /en/styles/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/styles/website.css -------------------------------------------------------------------------------- /en/styles/website.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/en/styles/website.less -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/index.html -------------------------------------------------------------------------------- /index_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/index_zh.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/package.json -------------------------------------------------------------------------------- /serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/serve.sh -------------------------------------------------------------------------------- /serve_daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/serve_daemon.sh -------------------------------------------------------------------------------- /zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/README.md -------------------------------------------------------------------------------- /zh/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/SUMMARY.md -------------------------------------------------------------------------------- /zh/_layouts/website/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/_layouts/website/header.html -------------------------------------------------------------------------------- /zh/_layouts/website/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/_layouts/website/page.html -------------------------------------------------------------------------------- /zh/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/book.json -------------------------------------------------------------------------------- /zh/examples/badapple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/examples/badapple.md -------------------------------------------------------------------------------- /zh/examples/printf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/examples/printf.md -------------------------------------------------------------------------------- /zh/get_started/blink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/get_started/blink.md -------------------------------------------------------------------------------- /zh/get_started/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/get_started/debug.md -------------------------------------------------------------------------------- /zh/get_started/pio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/get_started/pio.md -------------------------------------------------------------------------------- /zh/get_started/rv-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/get_started/rv-link.md -------------------------------------------------------------------------------- /zh/get_started/sipeed-debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/get_started/sipeed-debugger.md -------------------------------------------------------------------------------- /zh/styles/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/styles/website.css -------------------------------------------------------------------------------- /zh/styles/website.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/Longan-DOC/HEAD/zh/styles/website.less --------------------------------------------------------------------------------