├── .gitignore ├── CNAME ├── public ├── img │ ├── oled.jpg │ ├── body_bg.jpg │ └── spi_oled.jpg ├── codes │ └── oled.tar.gz ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── js │ ├── prettify │ │ ├── lang-rd.js │ │ ├── lang-go.js │ │ ├── lang-tex.js │ │ ├── lang-proto.js │ │ ├── lang-llvm.js │ │ ├── lang-yaml.js │ │ ├── lang-basic.js │ │ ├── lang-wiki.js │ │ ├── lang-lua.js │ │ ├── lang-hs.js │ │ ├── lang-erlang.js │ │ ├── lang-tcl.js │ │ ├── lang-r.js │ │ ├── lang-pascal.js │ │ ├── lang-lisp.js │ │ ├── lang-css.js │ │ ├── lang-mumps.js │ │ ├── lang-scala.js │ │ ├── lang-dart.js │ │ ├── lang-apollo.js │ │ ├── lang-ml.js │ │ ├── lang-n.js │ │ ├── lang-vhdl.js │ │ ├── lang-clj.js │ │ ├── prettify.css │ │ ├── lang-vb.js │ │ ├── lang-sql.js │ │ ├── prettify.js │ │ └── run_prettify.js │ ├── base.js │ └── jquery.pjax.js └── css │ ├── base.css │ └── highlight.css ├── assets ├── font │ ├── fontello.eot │ ├── fontello.ttf │ ├── fontello.woff │ ├── config.json │ └── fontello.svg ├── _sass │ ├── _nprogress.scss │ ├── _animation.scss │ └── _pygments.scss └── js │ ├── script.js │ └── nprogress.js ├── _includes ├── copyright.html ├── content.html ├── footer.html ├── disqus.html ├── contact.html ├── googleanalytics.html ├── share.html ├── header.html ├── nav.html └── navside.html ├── 404.html ├── sitemap.txt ├── _posts ├── linux │ ├── 2015-01-05-how-to-flash-on-linux.md │ ├── 2015-07-17-build-mainline-kernel.md │ ├── 2015-07-18-linux-sound.md │ ├── 2015-07-17-tty-debug.md │ ├── 2015-07-17-build-ubuntu-rootfs.md │ ├── 2015-07-17-install-ROS.md │ ├── 2015-07-18-linux-vnc-server.md │ ├── 2015-07-20-bootloader.md │ ├── 2015-07-17-build-linux-image.md │ └── 2015-07-18-boot-FreeBSD.md ├── start │ ├── 2014-12-31-enter-recovery-mode.md │ ├── 2014-12-28-Flash-image-to-nand-linux.md │ ├── 2015-07-20-unbrick-rock.md │ ├── 2015-07-17-download-to-sdcard.md │ ├── 2015-07-20-upgrade-nand-from-SD.md │ ├── 2015-07-21-firmware-naming.md │ ├── 2014-12-29-Q-and-A.md │ └── 2014-12-28-Flash-image-to-nand-windows.md ├── rock2 │ ├── 2015-05-17-rock2-square-resources.md │ ├── 2015-05-17-rock2-full-baseboard.md │ ├── 2015-05-17-rock2-loader-mode.md │ └── 2015-05-17-rock2-square-introduction.md ├── driver │ ├── 2015-07-20-making-bootable-sdcard.md │ ├── 2015-07-18-led-concrol.md │ ├── 2015-07-17-boot-process.md │ ├── 2015-01-06-control-led-with-gpio.md │ ├── 2015-07-18-infrared-configuration.md │ ├── 2015-05-17-custom-HDMI-resolution.md │ ├── 2015-07-20-using-camera-on-rock.md │ ├── 2014-12-31-radxa-display-setting.md │ └── 2015-12-02-oled-spi.md ├── hardware │ ├── 2015-01-05-extension-header.md │ ├── 2015-01-01-Radxa-Rock-Pro-Specification.md │ ├── 2014-12-29-differences-between-products.md │ ├── 2014-12-29-products.md │ ├── 2014-12-31-Radxa-Rock-Lite-docs.md │ └── 2015-07-21-product-history.md └── android │ ├── 2015-07-20-android-dev-tips.md │ ├── 2015-07-22-adb-trouble-shooting.md │ ├── 2015-07-17-build-android-source-code.md │ └── 2015-07-17-install-adb.md ├── _layouts ├── page.html ├── post.html └── base.html ├── pages ├── about.html ├── atom.xml ├── rss.xml └── archive.html ├── _config.yml ├── LICENSE.txt ├── ie.html ├── index.html ├── README.md └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.radxa.us 2 | -------------------------------------------------------------------------------- /public/img/oled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/img/oled.jpg -------------------------------------------------------------------------------- /public/img/body_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/img/body_bg.jpg -------------------------------------------------------------------------------- /public/img/spi_oled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/img/spi_oled.jpg -------------------------------------------------------------------------------- /assets/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/assets/font/fontello.eot -------------------------------------------------------------------------------- /assets/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/assets/font/fontello.ttf -------------------------------------------------------------------------------- /assets/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/assets/font/fontello.woff -------------------------------------------------------------------------------- /public/codes/oled.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/codes/oled.tar.gz -------------------------------------------------------------------------------- /public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radxa/docs/HEAD/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_includes/copyright.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | title: 404 Not Found Error 4 | --- 5 | 6 |2 | 如果需要更详细更全面的信息,请登陆 3 | 4 | 官方网站 http://radxa.com 5 | QQ讨论群 339567728 6 | 中文论坛 http://cn.radxa.com/forum.php 7 | 8 | 另外,本手册所使用的所有源码、固件、工具,都可以登陆以下地址下载 9 | 国外服务器 http://dl.radxa.com/ 10 | 百度云 http://pan.baidu.com/share/home?uk=3108273493#category/type=0 11 | 12 | 手册内容经小编实际操作,均可正常使用,但因系统以及整理文档等原因 13 | 若出现错误,请谅解,并使用以下邮箱联系我们 kevin@radxa.com 14 | 15 | Radxa团队 16 | 2015年7月 17 |18 | -------------------------------------------------------------------------------- /_includes/googleanalytics.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_posts/start/2014-12-31-enter-recovery-mode.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: 如何进入recovery 模式 4 | category: 上手指南 5 | tags: [recovery,模式] 6 | keywords: redxa,rock,recovery,模式 7 | description: 8 | --- 9 | 10 | 只需要4步 11 | 12 | 1. 断开电源 13 | 2. 拔掉USB线 14 | 3. 长按recovery键 15 | 4. 插入usb线到otg口 16 | 17 | 18 | 此时如何连接有刷机工具(RKBatchTool.exe, RKAndroidTool 或者linux下工具 ) 工具会自动识别设备 19 | 20 |  21 | -------------------------------------------------------------------------------- /_includes/share.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/prettify/lang-basic.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun", 3 | /^.[^\s\w"$%.]*/,a]]),["basic","cbm"]); 4 | -------------------------------------------------------------------------------- /public/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); 2 | PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); 3 | -------------------------------------------------------------------------------- /public/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], 2 | ["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); 3 | -------------------------------------------------------------------------------- /_posts/rock2/2015-05-17-rock2-square-resources.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: Rock2 Square 资源下载 4 | category: Rock2 5 | tags: [rock2] 6 | keywords: 资源,rock2,固件 7 | description: Rock2 Square 资源下载 8 | --- 9 | 10 | 固件下载地址 11 | 12 | 13 | ##Android## 14 | 15 | http://dl.radxa.com/rock2_square/images/android 16 | 17 | 18 | ##Linux## 19 | 20 | http://dl.radxa.com/rock2_square/images/nightly/ 21 | 22 | 23 | ##代码下载## 24 | 25 | - Android 26 | http://dl.radxa.com/rock2_square/source/ 27 | 28 | 29 | 参考: 30 | 31 | - http://cn.radxa.com/forum.php?mod=viewthread&tid=283&extra=page%3D1 -------------------------------------------------------------------------------- /pages/about.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 关于 4 | --- 5 | 6 |
用来汇总raxda的相关资料。
9 | 10 | 11 |Recommend to use Chrome or Firefox as your primary browser.
34 | 35 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 首页 4 | --- 5 | 6 |