<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[（全开源）D1s排针版本资料汇总]]></title><description><![CDATA[<p dir="auto">购买链接：<a href="https://item.taobao.com/item.htm?id=724377865732" target="_blank" rel="noopener noreferrer nofollow ugc">https://item.taobao.com/item.htm?id=724377865732</a></p>
<p dir="auto">原理图：<a href="/assets/uploads/files/1688434091336-sch_d1s_whycanpi_c3.zip">SCH_D1s_WhycanPI_C3.zip</a>  (立创EDA格式)</p>
<p dir="auto">PCB：<a href="/assets/uploads/files/1688434091329-pcb_d1s_whycanpi_c3.zip">PCB_D1s_WhycanPI_C3.zip</a>  (立创EDA格式)</p>
<p dir="auto">pdf原理图：<a href="/assets/uploads/files/1697509987615-sch_d1s_whycanpi_c3_2023-10-17.pdf">SCH_D1s_WhycanPI_C3_2023-10-17.pdf</a></p>
<p dir="auto">D1s测试固件：<a href="/assets/uploads/files/1688434207751-tina_d1s-whycanpic3_uart4_20230702.7z">tina_d1s-whycanpic3_uart4_20230702.7z</a>(不支持线刷)<br />
  <br />
T113-S3测试固件：<a href="/assets/uploads/files/1702272254043-tina_t113-whycanpic3_uart4_tf%E5%8D%A1%E5%9B%BA%E4%BB%B6-%E6%94%AF%E6%8C%81%E7%BA%BF%E5%88%B7.img">tina_t113-whycanpic3_uart4_TF卡固件，支持线刷.img</a></p>
<p dir="auto">D1s测试固件：<a href="/assets/uploads/files/1702272448952-tina_d1s-whycanpic3_uart4_20231208tf%E5%8D%A1%E5%9B%BA%E4%BB%B6-%E6%94%AF%E6%8C%81%E7%BA%BF%E5%88%B7.img">tina_d1s-whycanpic3_uart4_20231208TF卡固件，支持线刷.img</a></p>
<p dir="auto">此处下载：<a href="https://pan.baidu.com/s/1qFQ9c_cQFFBenujRpH5fpQ?pwd=awol" target="_blank" rel="noopener noreferrer nofollow ugc">whycanpi_handheld_c3_m2 SDK包</a></p>
<pre><code>source build/envsetup.sh
source 
lunch d1s_whycanpic3-tina
make
pack
</code></pre>
<p dir="auto">SDK补丁：<a href="/assets/uploads/files/1704158121602-d1s_t113s3_patch_20240102.tar">d1s_t113s3_patch_20240102.tar</a></p>
]]></description><link>https://bbs.aw-ol.com/topic/3792/全开源-d1s排针版本资料汇总</link><generator>RSS for Node</generator><lastBuildDate>Tue, 10 Mar 2026 22:05:51 GMT</lastBuildDate><atom:link href="https://bbs.aw-ol.com/topic/3792.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 04 Jul 2023 01:30:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Wed, 20 Dec 2023 03:03:26 GMT]]></title><description><![CDATA[<p dir="auto">t113排针版跑主线linux分享：<br />
平台：ubuntu22.04</p>
<pre><code>qmycy@x250:~$ uname -a
Linux x250 6.2.0-39-generic #40~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Nov 16 10:53:04 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
</code></pre>
<p dir="auto">/usr/include/linux/version.h <a href="http://5.15.xxx" target="_blank" rel="noopener noreferrer nofollow ugc">5.15.xxx</a></p>
<pre><code>#define LINUX_VERSION_CODE 331651
#define KERNEL_VERSION(a,b,c) (((a) &lt;&lt; 16) + ((b) &lt;&lt; 8) + ((c) &gt; 255 ? 255 : (c)))
#define LINUX_VERSION_MAJOR 5
#define LINUX_VERSION_PATCHLEVEL 15
#define LINUX_VERSION_SUBLEVEL 131
</code></pre>
<p dir="auto">arm-linux-gnueabihf-gcc,交叉编译器</p>
<pre><code>Supported LTO compression algorithms: zlib zstd
gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) 
</code></pre>
<p dir="auto">arm-none-eabi-gcc</p>
<pre><code>Thread model: single
Supported LTO compression algorithms: zlib
gcc version 10.3.1 20210621 (release) (15:10.3-2021.07-4) 
</code></pre>
<p dir="auto">一、awboot编译<br />
排针版，有一个usb2ttl，默认是uart4<br />
修改board.h</p>
<pre><code>--- /home/qmycy/aw0/awboot/board.h	2023-12-19 07:54:00.492240964 +0800
+++ /home/qmycy/aw1/awboot/board.h	2023-12-19 09:37:19.145093802 +0800
@@ -6,7 +6,7 @@
 #include "sunxi_usart.h"
 #include "sunxi_sdhci.h"
 
-#define USART_DBG usart4_dbg
+#define USART_DBG usart5_dbg
 
 #define CONFIG_BOOT_SPINAND
 #define CONFIG_BOOT_SDCARD
</code></pre>
<p dir="auto">修改board.c<br />
--- /home/qmycy/aw0/awboot/board.c	2023-12-19 07:54:49.208311737 +0800<br />
+++ /home/qmycy/aw1/awboot/board.c	2023-12-19 09:37:19.145093802 +0800<br />
@@ -27,13 +27,6 @@<br />
.gpio_rx = {GPIO_PIN(PORTB, 7), GPIO_PERIPH_MUX7},<br />
};</p>
<p dir="auto">-sunxi_usart_t usart4_dbg = {</p>
<ul>
<li>.base	 = 0x02501000,</li>
<li>.id		 = 4,</li>
<li>.gpio_tx = {GPIO_PIN(PORTE, 4), GPIO_PERIPH_MUX3},</li>
<li>.gpio_rx = {GPIO_PIN(PORTE, 5), GPIO_PERIPH_MUX3},<br />
-};</li>
<li></li>
</ul>
<p dir="auto">sunxi_spi_t sunxi_spi0 = {<br />
.base	   = 0x04025000,<br />
.id		   = 0,</p>
<p dir="auto">二、linux内核为evlers修改后的源码编译<br />
设备树<br />
1 、改alias<br />
aliases {<br />
ethernet0 = &amp;rtl8189fs;<br />
mmc0 = &amp;mmc0;<br />
serial1 = &amp;uart1;<br />
serial4 = &amp;uart4;<br />
serial5 = &amp;uart5;<br />
};<br />
2、改内核启动参数<br />
chosen {<br />
stdout-path = "serial4:115200n8";<br />
bootargs = "mem=128M cma=72M root=/dev/mmcblk0p3 rootfstype=ext4 init=/linuxrc rw rootwait console=tty0 console=ttyS4,115200";<br />
};</p>
<p dir="auto">3、改pio<br />
uart4_pe4_pins: uart4-pe4-pins {<br />
pins = "PE4", "PE5";<br />
function = "uart4";<br />
};<br />
uart5_pb4_pins: uart5-pb4-pins {<br />
pins = "PB4", "PB5";</p>
<p dir="auto">buildroot：<br />
buildroot-2022.02.5<br />
改国内源<br />
BR2_BACKUP_SITE="<a href="http://sources.buildroot.net" target="_blank" rel="noopener noreferrer nofollow ugc">http://sources.buildroot.net</a>"<br />
BR2_KERNEL_MIRROR="<a href="https://mirror.bjtu.edu.cn/kernel/" target="_blank" rel="noopener noreferrer nofollow ugc">https://mirror.bjtu.edu.cn/kernel/</a>"<br />
BR2_GNU_MIRROR="<a href="http://mirrors.nju.edu.cn/gnu/" target="_blank" rel="noopener noreferrer nofollow ugc">http://mirrors.nju.edu.cn/gnu/</a>"<br />
BR2_LUAROCKS_MIRROR="<a href="http://luarocks.cn" target="_blank" rel="noopener noreferrer nofollow ugc">http://luarocks.cn</a>"<br />
BR2_CPAN_MIRROR="<a href="http://cpan.nju.edu.cn/CPAN/" target="_blank" rel="noopener noreferrer nofollow ugc">http://cpan.nju.edu.cn/CPAN/</a>"<br />
buildroot使用自编交叉编译器，linux的version.h版本最好跟主机的交叉编译器版本对上<br />
BR2_DEFAULT_KERNEL_HEADERS="5.15.53"</p>
<p dir="auto">awboot是用arm-none-eabi-gcc编译的依赖性弱。<br />
linux内核调用主机本地交叉编译器和buildroot可以设定自编交叉编译器版本要对上。不然会导致稀奇古怪的问题，浪费时间。这个是linux头痛的问题。</p>
<p dir="auto">sd卡分区：<br />
mbr 3个区，<br />
第一个区不用，引导用，brom会读取这个区引导awboot<br />
第二个区fat32，内核以及dtb<br />
第三个区ex4，buildroot</p>
<p dir="auto">参考：<br />
<a href="https://bbs.aw-ol.com/topic/2338/mangopi-dual-t113-%E4%B8%BB%E7%BA%BF%E5%86%85%E6%A0%B8%E7%BC%96%E8%AF%91%E8%AE%B0%E5%BD%95">MangoPi Dual T113 主线内核编译记录</a><br />
<a href="https://whycan.com/t_9293.html" target="_blank" rel="noopener noreferrer nofollow ugc"> 在wsl下开发T113的主线linux</a><br />
<a href="https://whycan.com/t_9231.html" target="_blank" rel="noopener noreferrer nofollow ugc">T113-S3主线Linux支持方案</a><br />
<a href="https://whycan.com/t_10249.html" target="_blank" rel="noopener noreferrer nofollow ugc">T113 AWboot 编译指南</a><br />
<a href="https://github.com/szemzoa/awboot" target="_blank" rel="noopener noreferrer nofollow ugc">awboot下载地址</a><br />
<a href="https://github.com/Evlers/linux_kernel_t113" target="_blank" rel="noopener noreferrer nofollow ugc">Evlers改好的linux 6.0.1下载地址</a></p>
]]></description><link>https://bbs.aw-ol.com/post/20479</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/20479</guid><dc:creator><![CDATA[qmycy]]></dc:creator><pubDate>Wed, 20 Dec 2023 03:03:26 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 18 Dec 2023 07:40:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 虚拟机的镜像还没下完，你网盘里的sdk，我已经下下来了。<br />
虚拟机里的是uart4的固件吗？<br />
t113s3和d1是一个sdk吗？我买了两个板子</p>
]]></description><link>https://bbs.aw-ol.com/post/20459</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/20459</guid><dc:creator><![CDATA[qmycy]]></dc:creator><pubDate>Mon, 18 Dec 2023 07:40:44 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sun, 17 Dec 2023 11:45:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/4281">@qmycy</a></p>
<p dir="auto">不想折腾的话，就装虚拟机。</p>
]]></description><link>https://bbs.aw-ol.com/post/20451</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/20451</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Sun, 17 Dec 2023 11:45:36 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sun, 17 Dec 2023 08:07:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a>  刚买了笔记本电脑，专门编译sdk，不想折腾，安装什么版本的，是ubuntu18.04吗？</p>
]]></description><link>https://bbs.aw-ol.com/post/20448</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/20448</guid><dc:creator><![CDATA[qmycy]]></dc:creator><pubDate>Sun, 17 Dec 2023 08:07:28 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Fri, 15 Dec 2023 02:09:07 GMT]]></title><description><![CDATA[<p dir="auto">我买了晕哥的D1s和T113-S3的开发板。<br />
<img src="/assets/uploads/files/1702605076347-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20231215095104.jpg" alt="微信图片_20231215095104.jpg" class=" img-responsive img-markdown" /><br />
调试了两天,现在把gpio的调试分享给同样是新手朋友。</p>
<ul>
<li>gpio的调试：</li>
</ul>
<pre><code>root@TinaLinux:/# cd /sys/class/gpio
root@TinaLinux:/sys/class/gpio# ls
export     gpiochip0  unexport
root@TinaLinux:/sys/class/gpio# echo 36 &gt;export
root@TinaLinux:/sys/class/gpio# ls
export     gpio36     gpiochip0  unexport
root@TinaLinux:/sys/class/gpio# cd gpio36
root@TinaLinux:/sys/devices/platform/soc@3000000/2000000.pinctrl/gpiochip0/gpio/gpio36# ls
active_low            edge                  uevent
device                power                 value
direction             subsystem             waiting_for_supplier
root@TinaLinux:/sys/devices/platform/soc@3000000/2000000.pinctrl/gpiochip0/gpio/gpio36#
</code></pre>
<p dir="auto">其中GPIO36的36的由来，32<em>x+y<br />
PA:x=0,PB:x=1,以此类推。那么PB4=32</em>1+4</p>
<ul>
<li>查看引脚分配</li>
</ul>
<pre><code>root@TinaLinux:~# mount -t debugfs debug /proc/sys/debug
root@TinaLinux:~# cd /proc/sys/debug
root@TinaLinux:/proc/sys/debug# ls
asoc                extfrag             pwm
bdi                 fault_around_bytes  regmap
block               gpio                regulator
bluetooth           ieee80211           sleep_time
clear_warn_once     ion                 sunxi_leds
clk                 memblock            suspend_stats
device_component    mmc0                ubi
devices_deferred    mmc1                ubifs
dispdbg             mtd                 usb
dma_buf             pinctrl             wakeup_sources
enc_test            pm_qos
root@TinaLinux:/proc/sys/debug# cd pinctrl/
root@TinaLinux:/proc/sys/debug/pinctrl# ls
2000000.pinctrl  pinctrl-devices  pinctrl-handles  pinctrl-maps
root@TinaLinux:/proc/sys/debug/pinctrl# cd 2000000.pinctrl/
root@TinaLinux:/proc/sys/debug/pinctrl/2000000.pinctrl# ls
gpio-ranges       pinconf-pins      pinmux-functions  pins
pinconf-groups    pingroups         pinmux-pins
root@TinaLinux:/proc/sys/debug/pinctrl/2000000.pinctrl# cat pinmux-pins
Pinmux settings per pin
Format: pin (name): mux_owner|gpio_owner (strict) hog?
pin 32 (PB0): GPIO 2000000.pinctrl:32
pin 33 (PB1): UNCLAIMED
pin 34 (PB2): device 2502000.twi function gpio_in group PB2
pin 35 (PB3): device 2502000.twi function gpio_in group PB3
pin 36 (PB4): GPIO 2000000.pinctrl:36
pin 37 (PB5): UNCLAIMED
pin 38 (PB6): device 2500c00.uart function uart3 group PB6
pin 39 (PB7): device 2500c00.uart function uart3 group PB7
pin 40 (PB8): UNCLAIMED
pin 41 (PB9): UNCLAIMED
pin 42 (PB10): UNCLAIMED
pin 43 (PB11): UNCLAIMED
pin 44 (PB12): UNCLAIMED
pin 64 (PC0): UNCLAIMED
pin 65 (PC1): UNCLAIMED
pin 66 (PC2): device 4025000.spi function spi0 group PC2
pin 67 (PC3): device 4025000.spi function spi0 group PC3
pin 68 (PC4): device 4025000.spi function spi0 group PC4
pin 69 (PC5): device 4025000.spi function spi0 group PC5
pin 70 (PC6): device 4025000.spi function spi0 group PC6
pin 71 (PC7): device 4025000.spi function spi0 group PC7
pin 96 (PD0): UNCLAIMED
pin 97 (PD1): UNCLAIMED
pin 98 (PD2): UNCLAIMED
pin 99 (PD3): UNCLAIMED
pin 100 (PD4): UNCLAIMED
pin 101 (PD5): UNCLAIMED
pin 102 (PD6): UNCLAIMED
pin 103 (PD7): UNCLAIMED
pin 104 (PD8): UNCLAIMED
pin 105 (PD9): UNCLAIMED
pin 106 (PD10): UNCLAIMED
pin 107 (PD11): UNCLAIMED
pin 108 (PD12): UNCLAIMED
pin 109 (PD13): UNCLAIMED
pin 110 (PD14): UNCLAIMED
pin 111 (PD15): UNCLAIMED
pin 112 (PD16): UNCLAIMED
pin 113 (PD17): UNCLAIMED
pin 114 (PD18): UNCLAIMED
pin 115 (PD19): UNCLAIMED
pin 116 (PD20): UNCLAIMED
pin 117 (PD21): UNCLAIMED
pin 118 (PD22): UNCLAIMED
pin 128 (PE0): UNCLAIMED
pin 129 (PE1): UNCLAIMED
pin 130 (PE2): UNCLAIMED
pin 131 (PE3): UNCLAIMED
pin 132 (PE4): device 2501000.uart function uart4 group PE4
pin 133 (PE5): device 2501000.uart function uart4 group PE5
pin 134 (PE6): UNCLAIMED
pin 135 (PE7): UNCLAIMED
pin 136 (PE8): UNCLAIMED
pin 137 (PE9): UNCLAIMED
pin 138 (PE10): UNCLAIMED
pin 139 (PE11): UNCLAIMED
pin 140 (PE12): GPIO 2000000.pinctrl:140
pin 141 (PE13): GPIO 2000000.pinctrl:141
pin 142 (PE14): UNCLAIMED
pin 143 (PE15): UNCLAIMED
pin 144 (PE16): UNCLAIMED
pin 145 (PE17): UNCLAIMED
pin 160 (PF0): device 4020000.sdmmc function sdc0 group PF0
pin 161 (PF1): device 4020000.sdmmc function sdc0 group PF1
pin 162 (PF2): device 4020000.sdmmc function sdc0 group PF2
pin 163 (PF3): device 4020000.sdmmc function sdc0 group PF3
pin 164 (PF4): device 4020000.sdmmc function sdc0 group PF4
pin 165 (PF5): device 4020000.sdmmc function sdc0 group PF5
pin 166 (PF6): GPIO 2000000.pinctrl:166
pin 192 (PG0): device 4021000.sdmmc function gpio_in group PG0
pin 193 (PG1): device 4021000.sdmmc function gpio_in group PG1
pin 194 (PG2): device 4021000.sdmmc function gpio_in group PG2
pin 195 (PG3): device 4021000.sdmmc function gpio_in group PG3
pin 196 (PG4): device 4021000.sdmmc function gpio_in group PG4
pin 197 (PG5): device 4021000.sdmmc function gpio_in group PG5
pin 198 (PG6): device 2500400.uart function uart1 group PG6
pin 199 (PG7): device 2500400.uart function uart1 group PG7
pin 200 (PG8): device 2500400.uart function uart1 group PG8
pin 201 (PG9): device 2500400.uart function uart1 group PG9
pin 202 (PG10): GPIO 2000000.pinctrl:202
pin 203 (PG11): device soc@3000000:rfkill@0 function clk_fanout1 group PG11
pin 204 (PG12): GPIO 2000000.pinctrl:204
pin 205 (PG13): device 2008000.ledc function ledc group PG13
pin 206 (PG14): GPIO 2000000.pinctrl:206
pin 207 (PG15): GPIO 2000000.pinctrl:207
pin 208 (PG16): UNCLAIMED
pin 209 (PG17): UNCLAIMED
pin 210 (PG18): UNCLAIMED
root@TinaLinux:/proc/sys/debug/pinctrl/2000000.pinctrl#
</code></pre>
<ul>
<li>查看寄存器</li>
</ul>
<pre><code>root@TinaLinux:/proc/sys/debug/pinctrl/2000000.pinctrl# cd /sys/class/sunxi_dump
root@TinaLinux:/sys/class/sunxi_dump# ls
compare            help               standby_dump_ctrl  write
dump               rw_byte            test
root@TinaLinux:/sys/class/sunxi_dump# echo 0x02000034 &gt;dump
root@TinaLinux:/sys/class/sunxi_dump# cat dump
0x000fffff
root@TinaLinux:/sys/class/sunxi_dump# echo 0x02000034 0x0 &gt;write
root@TinaLinux:/sys/class/sunxi_dump# cat dump
0x00000000
root@TinaLinux:/sys/class/sunxi_dump#
</code></pre>
<ul>
<li>adb连接<br />
晕哥的板子有一个usb转ttl的桥，可以用putty进行连接。<br />
这个板子同时支持adb调试<br />
1、下载adb工具包<br />
2、查看是否连接</li>
</ul>
<pre><code>D:\platform-tools&gt;adb devices
List of devices attached
20080411        device
</code></pre>
<p dir="auto">3、进入板子的shell</p>
<pre><code>D:\platform-tools&gt;adb -s 20080411 shell


BusyBox v1.27.2 () built-in shell (ash)

------run profile file-----
 _____  _              __     _
|_   _||_| ___  _ _   |  |   |_| ___  _ _  _ _
  | |   _ |   ||   |  |  |__ | ||   || | ||_'_|
  | |  | || | || _ |  |_____||_||_|_||___||_,_|
  |_|  |_||_|_||_|_|  Tina is Based on OpenWrt!
 ----------------------------------------------
 Tina Linux (Neptune, 61CC0487)
 ----------------------------------------------
mount: mounting none on /sys/kernel/debug failed: Device or resource busy
root@TinaLinux:/#
</code></pre>
]]></description><link>https://bbs.aw-ol.com/post/20421</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/20421</guid><dc:creator><![CDATA[qmycy]]></dc:creator><pubDate>Fri, 15 Dec 2023 02:09:07 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Thu, 09 Nov 2023 06:08:40 GMT]]></title><description><![CDATA[<p dir="auto">晕哥：贴片的sd nand芯片转tf卡，插在这个板子的tf卡槽里，能不能用usb口刷固件，刷到这个sd nand芯片</p>
]]></description><link>https://bbs.aw-ol.com/post/19717</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/19717</guid><dc:creator><![CDATA[mafei]]></dc:creator><pubDate>Thu, 09 Nov 2023 06:08:40 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Fri, 06 Oct 2023 12:29:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/2367">@cbq123</a> 在 <a href="/post/19029">（全开源）D1s排针版本资料汇总</a> 中说：</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 晕哥，虚拟机中的ROOT账户密码是多杀？</p>
</blockquote>
<p dir="auto">用户名：whycan<br />
密码：whycan</p>
]]></description><link>https://bbs.aw-ol.com/post/19031</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/19031</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Fri, 06 Oct 2023 12:29:34 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Fri, 06 Oct 2023 06:12:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 晕哥，虚拟机中的ROOT账户密码是多杀？</p>
]]></description><link>https://bbs.aw-ol.com/post/19029</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/19029</guid><dc:creator><![CDATA[cbq123]]></dc:creator><pubDate>Fri, 06 Oct 2023 06:12:39 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Fri, 06 Oct 2023 06:12:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 是的，感谢晕哥</p>
]]></description><link>https://bbs.aw-ol.com/post/19028</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/19028</guid><dc:creator><![CDATA[cbq123]]></dc:creator><pubDate>Fri, 06 Oct 2023 06:12:02 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sun, 17 Sep 2023 01:41:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/2367">@cbq123</a> 在 <a href="/post/18601">（全开源）D1s排针版本资料汇总</a> 中说：</p>
<blockquote>
<p dir="auto">出现这个错误无法启动怎么办？？</p>
<pre><code>part_get_info_efi: *** ERROR: Invalid Backup GPT ***
[00.852]change working_fdt 0x42aa1da0 to 0x42a81da0
disable nand error: FDT_ERR_BADPATH
No reserved memory region found in source FDT
[00.892]update dts
noncached_alloc(): addr = 0x42b0b7c0
noncached_alloc(): addr = 0x42b0b800
noncached_alloc(): addr = 0x42ef4b80
noncached_alloc(): addr = 0x42ef53c0
geth_sys_init:634: get node 'gmac0' error
geth_sys_init fail!
[00.912]Board Net Initialization Failed
[00.915]No ethernet found.
Hit any key to stop autoboot:  0
## Error: "distro_bootcmd" not defined
)
</code></pre>
</blockquote>
<p dir="auto">最终换新版本卡刷软件解决了。</p>
]]></description><link>https://bbs.aw-ol.com/post/18780</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/18780</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Sun, 17 Sep 2023 01:41:35 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Thu, 14 Sep 2023 10:18:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/2367">@cbq123</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 大哥救救我啊</p>
]]></description><link>https://bbs.aw-ol.com/post/18730</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/18730</guid><dc:creator><![CDATA[cbq123]]></dc:creator><pubDate>Thu, 14 Sep 2023 10:18:13 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sat, 09 Sep 2023 08:09:06 GMT]]></title><description><![CDATA[<p dir="auto">出现这个错误无法启动怎么办？？</p>
<pre><code>part_get_info_efi: *** ERROR: Invalid Backup GPT ***
[00.852]change working_fdt 0x42aa1da0 to 0x42a81da0
disable nand error: FDT_ERR_BADPATH
No reserved memory region found in source FDT
[00.892]update dts
noncached_alloc(): addr = 0x42b0b7c0
noncached_alloc(): addr = 0x42b0b800
noncached_alloc(): addr = 0x42ef4b80
noncached_alloc(): addr = 0x42ef53c0
geth_sys_init:634: get node 'gmac0' error
geth_sys_init fail!
[00.912]Board Net Initialization Failed
[00.915]No ethernet found.
Hit any key to stop autoboot:  0
## Error: "distro_bootcmd" not defined
)
</code></pre>
]]></description><link>https://bbs.aw-ol.com/post/18601</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/18601</guid><dc:creator><![CDATA[cbq123]]></dc:creator><pubDate>Sat, 09 Sep 2023 08:09:06 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 07 Aug 2023 01:10:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/3416">@a17602198728</a></p>
<p dir="auto">之前的SDK可能打包缺了文件，试一试我新传的这个：</p>
<p dir="auto">此处下载：<a href="https://pan.baidu.com/s/1qFQ9c_cQFFBenujRpH5fpQ?pwd=awol" target="_blank" rel="noopener noreferrer nofollow ugc">whycanpi_handheld_c3_m2 SDK包</a></p>
]]></description><link>https://bbs.aw-ol.com/post/17773</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17773</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Mon, 07 Aug 2023 01:10:55 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sat, 05 Aug 2023 08:54:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 帮忙看一下啊</p>
]]></description><link>https://bbs.aw-ol.com/post/17742</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17742</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Sat, 05 Aug 2023 08:54:30 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sat, 05 Aug 2023 08:21:24 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1691220570995-e7055f93-68aa-4ae8-bcc7-b4847c36dbe3-image.png" alt="e7055f93-68aa-4ae8-bcc7-b4847c36dbe3-image.png" class=" img-responsive img-markdown" width="1201" height="450" /></p>
<p dir="auto">我用这个再加上楼主给的tina2.0_patch_d1s_whycanpic3_20230704a.tar,会报错啊<br />
<img src="/assets/uploads/files/1691220641285-c11559c0-ad42-47c3-92a4-b2fddb547026-image.png" alt="c11559c0-ad42-47c3-92a4-b2fddb547026-image.png" class=" img-responsive img-markdown" width="1184" height="771" /></p>
]]></description><link>https://bbs.aw-ol.com/post/17741</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17741</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Sat, 05 Aug 2023 08:21:24 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Thu, 03 Aug 2023 09:45:59 GMT]]></title><description><![CDATA[<p dir="auto">这个和T113-S3管脚兼容吗</p>
]]></description><link>https://bbs.aw-ol.com/post/17694</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17694</guid><dc:creator><![CDATA[l19900099]]></dc:creator><pubDate>Thu, 03 Aug 2023 09:45:59 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Thu, 03 Aug 2023 00:15:41 GMT]]></title><description><![CDATA[<p dir="auto">有没有D1S的一些操作串口，GPIO等历程啊</p>
]]></description><link>https://bbs.aw-ol.com/post/17663</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17663</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Thu, 03 Aug 2023 00:15:41 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 31 Jul 2023 03:04:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 在 <a href="/post/17535">（全开源）D1s排针版本资料汇总</a> 中说：</p>
<blockquote>
<p dir="auto">SDK包太大了，35G这要下载到山崩地裂啊，能不能帮忙上传一个编译器</p>
</blockquote>
]]></description><link>https://bbs.aw-ol.com/post/17540</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17540</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Mon, 31 Jul 2023 03:04:42 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 31 Jul 2023 02:27:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 在 <a href="/post/16856">（全开源）D1s排针版本资料汇总</a> 中说：</p>
<blockquote>
<p dir="auto">基于这个SDK</p>
</blockquote>
<p dir="auto">基于<a href="https://pan.baidu.com/s/1tADvigD1xtOWqieJmcuPkA?pwd=awol" target="_blank" rel="noopener noreferrer nofollow ugc">这个SDK</a></p>
<p dir="auto">编译文件系统和编译app要用同一个gcc就可以了。</p>
]]></description><link>https://bbs.aw-ol.com/post/17535</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17535</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Mon, 31 Jul 2023 02:27:59 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 31 Jul 2023 02:24:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> 有适配这个板子的编译器吗？帮忙发一下，我在官网上面找到的编译器</p>
]]></description><link>https://bbs.aw-ol.com/post/17533</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17533</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Mon, 31 Jul 2023 02:24:45 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 31 Jul 2023 02:11:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/3416">@a17602198728</a> 在 <a href="/post/17524">（全开源）D1s排针版本资料汇总</a> 中说：</p>
<blockquote>
<p dir="auto">这个是编译器还是板子本身的glib版本不一致</p>
</blockquote>
<p dir="auto">是的。</p>
]]></description><link>https://bbs.aw-ol.com/post/17526</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17526</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Mon, 31 Jul 2023 02:11:43 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Mon, 31 Jul 2023 02:05:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/44">@whycan</a> static会程序变大很多啊，这个是编译器还是板子本身的glib版本不一致？有啥法子能从根本上解决一下啊</p>
]]></description><link>https://bbs.aw-ol.com/post/17524</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17524</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Mon, 31 Jul 2023 02:05:55 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sun, 30 Jul 2023 13:17:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://bbs.aw-ol.com/uid/3416">@a17602198728</a><br />
静态编译就不会出现这个问题了，命令行加 <strong>-static</strong></p>
]]></description><link>https://bbs.aw-ol.com/post/17501</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17501</guid><dc:creator><![CDATA[whycan]]></dc:creator><pubDate>Sun, 30 Jul 2023 13:17:37 GMT</pubDate></item><item><title><![CDATA[Reply to （全开源）D1s排针版本资料汇总 on Sun, 30 Jul 2023 12:37:23 GMT]]></title><description><![CDATA[<p dir="auto">我用的是ubuntu 20.04,然后用了官网提供的交叉编译器编译的riscv64-glibc-gcc-thead_20200702，然后写了hello world就崩了，这个我要咋修改才能解决啊</p>
]]></description><link>https://bbs.aw-ol.com/post/17500</link><guid isPermaLink="true">https://bbs.aw-ol.com/post/17500</guid><dc:creator><![CDATA[A17602198728]]></dc:creator><pubDate>Sun, 30 Jul 2023 12:37:23 GMT</pubDate></item></channel></rss>