update home add products

This commit is contained in:
Neucrack
2024-01-31 16:48:04 +08:00
parent dafc5a101b
commit ce206b8198
30 changed files with 419 additions and 156 deletions

View File

@@ -167,7 +167,7 @@
content: "maix", // maix.html
},
{
label: "LicheePi SBC",
label: "Lichee / Longan",
content: "licheepi",
},
{
@@ -224,6 +224,7 @@
deviceWidth: window.innerWidth,
data_maix: data_maix,
data_lichee: data_lichee,
data_arm: data_arm,
data_tang: data_tang,
data_maixsense: data_maixsense,
data_others: data_others,

View File

@@ -1,10 +1,10 @@
<!-- 修改后保存一下 include 这个文件的 html 模板就会渲染 -->
<div class="w-full flex flex-col justify-center items-center">
<h2 class="text-2xl font-bold my-8 block_simple">{{_('Linux SBC 系列')}}</h2>
<div class="w-full flex flex-col justify-center items-center">
<h2 class="text-2xl font-bold my-8 block_simple">{{_('Linux RISC-V SBC 系列')}}</h2>
<div class="cards">
<!-- cards -->
<!-- cards risc-v-->
<div class="card" v-for="item in data_lichee.cards">
<img class="card_img" :src="item.img" />
<h3 class="card_title" class="text-lg">{[item.title]}</h3>
@@ -18,42 +18,59 @@
>
</div>
</div>
<!-- cards end -->
</div>
<!-- cards end -->
<!-- cards arm-->
<h2 class="text-2xl font-bold my-8 block_simple">{{_('Linux ARM SBC 系列')}}</h2>
<div class="cards">
<!-- cards -->
<div class="card" v-for="item in data_arm.cards">
<img class="card_img" :src="item.img" />
<h3 class="card_title" class="text-lg">{[item.title]}</h3>
<div class="card_brief">{[item.brief]}</div>
<div class="card_btns">
<a
v-for="btn in item.btns"
:href="btn.link"
:target="btn.new_tab ? '_blank' : '_self'"
>{[btn.label]}</a
>
</div>
</div>
</div>
<!-- cards end -->
<div class="w-full flex flex-col justify-center items-center mt-10 mb-5">
<!-- a table to compare upper products' parameters -->
<h3 class="text-2xl font-bold my-8">{{_('Lichee SBC 系列产品参数对比')}}</h3>
<!-- RISC-V -->
<div class="flex flex-col justify-center items-center">
<h3 class="text-2xl font-bold my-8">{{_('RISC-V SBC 系列产品参数对比')}}</h3>
<table>
<thead>
<tr>
<th>{{_('参数')}}</th>
<th>LicheePi 4A</th>
<th>LicheeRV-Nano</th>
<th>LicheeRV</th>
<th>LicheePi Zero</th>
<th>LicheePi Nano</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{_('处理器')}}</td>
<td>TH1520: 4xC910@1.85GHz RV64GCV</td>
<td>SG2002: C906@1.0GHz/ARM A53 + C906@700MHz + 8051@25~300MHz</td>
<td>D1: C906@1.0GHz</td>
<td>V3S: Cortex-A7@1.2GHz</td>
<td>F1C100s: ARM9@408MHz</td>
</tr>
<tr>
<td>{{_('内存')}}</td>
<td>8GB/16GB 64bits LPDDR4X</td>
<td>256MB DDR3 SIP</td>
<td>512MB/1GB DDR3, 792MHz</td>
<td>64MB DDR2</td>
<td>32MB DDR</td>
</tr>
<tr>
<td>{{_('储存')}}</td>
<td>{{_('预留')}} EMMC/TF {{_('卡')}}</td>
<td>{{_('预留')}} SD-NAND/TF {{_('卡')}}</td>
<td>{{_('预留')}} SOP8 SPI Flash/TF {{_('卡')}}</td>
<td>{{_('板载')}} 16MB NOR Flash, TF {{_('卡')}}</td>
<td>{{_('预留')}} SD-NAND/TF {{_('卡')}}</td>
</tr>
<tr>
<td>{{_('GPU和显示')}}</td>
@@ -62,9 +79,8 @@
3.0/3.1/3.2<br />Vulkan 1.1/1.2,<br />HDMI2.0/4-lane MIPI DSI ·
Android NN HAL
</td>
<td>{{_('无')}} GPU, MIPI 2-lane MIPI DSI 31pin, 6pin touchscreen</td>
<td>{{_('无')}} GPU, MIPI 4-lane MIPI DSI/ RGB888/MCUI80/SPI</td>
<td>{{_('无')}} GPU, 40P RGB LCD</td>
<td>{{_('无')}} GPU, 40P RGB LCD</td>
</tr>
<tr>
<td>{{_('编解码器')}}</td>
@@ -72,10 +88,82 @@
H.265 4K@40FPS/H.264 4K@40FPS/VP9/8/7/6/AVS/AVS+/AVS2.0/VC1/MPEG4
{{_('解码')}}<br />H.264 4K@40FPS/H.265 4K@40FPS {{_('编码')}}
</td>
<td>
H.264 H.265 2k@30FPS {{_('解码')}}<br />H.264 H.265 2k@30FPS {{_('编码')}}
</td>
<td>
H.264 1080p@30FPS/MJPEG 1080@30FPS {{_('解码')}}<br />1080p@40FPS/1080p@30FPS+VGA@30FPS
H.264 {{_('编码')}}
</td>
</tr>
<tr>
<td>{{_('操作系统')}}</td>
<td>{{_('主线')}} Linux/Android/Deepin/Ubuntu/OpenWrt etc.</td>
<td>{{_('主线')}} Linux/BuildRoot/Debian etc.</td>
<td>Tina Linux/Debian/Ubuntu/RTOS</td>
</tr>
<tr>
<td>NPU</td>
<td>4Tops@INT8 1GHz</td>
<td>1Tops@INT8, BF16 support</td>
<td>{{_('无')}}</td>
</tr>
<tr>
<td>{{_('典型外设')}}</td>
<td>
USB3.0x4/UART/I2C/SPI/PWM/GPIO/ADC<br />2x2-lane MIPI CSI/1x4-lane
MIPI CSI/1000M Ethx2
</td>
<td>
USB2.0/UART/I2C/SPI/PWM/GPIO/ADC<br />2lane MIPI DSI/4lane MIPI CSI/100M Eth/WiFi6+BLE5
</td>
<td>OTG USB/UART/I2C/SPI/PWM/GPIO/TWI/ADC</td>
</tr>
</tbody>
</table>
</div>
<!-- ARM -->
<div class="flex flex-col justify-center items-center">
<h3 class="text-2xl font-bold my-8">{{_('ARM SBC 系列产品参数对比')}}</h3>
<table>
<thead>
<tr>
<th>{{_('参数')}}</th>
<th>LonganPi 3H</th>
<th>LicheePi Zero</th>
<th>LicheePi Nano</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{_('处理器')}}</td>
<td>H618: Cortex-A53x4@1.5GHz</td>
<td>V3S: Cortex-A7@1.2GHz</td>
<td>F1C100s: ARM9@408MHz</td>
</tr>
<tr>
<td>{{_('内存')}}</td>
<td>1/2/4GB 64bits LPDDR4</td>
<td>64MB DDR2</td>
<td>32MB DDR</td>
</tr>
<tr>
<td>{{_('储存')}}</td>
<td>{{_('预留')}} eMMC/TF {{_('卡')}}</td>
<td>{{_('预留')}} SOP8 SPI Flash/TF {{_('卡')}}</td>
<td>{{_('板载')}} 16MB NOR Flash, TF {{_('卡')}}</td>
</tr>
<tr>
<td>{{_('GPU和显示')}}</td>
<td>Arm Mali-G31 OpenCL2.0 OpenGL ES 1.0/2.0/3.2 Vulkan 1.1</td>
<td>{{_('无')}} GPU, 40P RGB LCD</td>
<td>{{_('无')}} GPU, 40P RGB LCD</td>
</tr>
<tr>
<td>{{_('编解码器')}}</td>
<td>
H.264 BP/MP/HP 4k@60FPS {{_('解码')}}<br>H.264 BP/MP/HP 4k@25FPS {{_('编码')}}
</td>
<td>
H.264 1280x720@30FPS/MPEG1/2/4 1280x720@30FPS {{_('解码')}}<br />MJPEG
1280x720@30FPS/JPEG 8192x8192 {{_('编码')}}
@@ -87,14 +175,12 @@
</tr>
<tr>
<td>{{_('操作系统')}}</td>
<td>{{_('主线')}} Linux/Android/Deepin/Ubuntu/OpenWrt etc.</td>
<td>Tina Linux/Debian/Ubuntu/RTOS</td>
<td>Linux {{_('主线')}}/Debian</td>
<td>Linux</td>
<td>4.19 {{_('主线')}} Linux/3.10 BSP Linux/Xboot/RT-Thread</td>
</tr>
<tr>
<td>NPU</td>
<td>4Tops@INT8 1GHz</td>
<td>{{_('无')}}</td>
<td>{{_('无')}}</td>
<td>{{_('无')}}</td>
@@ -102,10 +188,8 @@
<tr>
<td>{{_('典型外设')}}</td>
<td>
USB3.0x4/UART/I2C/SPI/PWM/GPIO/ADC<br />2x2-lane MIPI CSI/1x4-lane
MIPI CSI/1000M Ethx2
USB2.0x2/OTG USB2.0x1/UART/SPI/1000M ETH
</td>
<td>OTG USB/UART/I2C/SPI/PWM/GPIO/TWI/ADC</td>
<td>
OTG USBx1/UARTx3/SPIx1/PWMx2/<br />GPIO/LRADCx1/SDIOx2/TWI/I2Cx2/100M
Eth+EPHY/MIPI CSIx1
@@ -116,6 +200,7 @@
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
@@ -124,7 +209,7 @@
const data_lichee = {
cards: [
{
img: "/static/home/licheepi4a.jpg",
img: "/static/image/LicheePi_4A.png",
title: "LicheePi 4A",
brief: "{{_('高性能 RISC-V@1.85GHz x4 开发板/平板/笔记本电脑')}}",
btns: [
@@ -137,10 +222,31 @@
link: "https://item.taobao.com/item.htm?id=715508771884",
new_tab: true,
},
{
label: "{{_('更多')}}",
link: "https://sipeed.com/licheepi4a",
new_tab: true,
}
],
},
{
img: "/static/image/licheeRV_dock.jpg",
img: "/static/image/licheerv_nano.png",
title: "LicheeRV-Nano",
brief: "{{_('高性价比迷你 RISC-V IPC/屏显开发板')}}",
btns: [
{
label: "{{_('文档')}}",
link: "{{_('/licheerv-nano')}}",
},
{
label: "{{_('购买')}}",
link: "{{_('https://item.taobao.com/item.htm?id=764939520376')}}",
new_tab: true,
},
],
},
{
img: "/static/image/licheeRV_dock.png",
title: "LicheeRV",
brief: "{{_('高集成度入门级 RISC-V Linux 开发板')}}",
btns: [
@@ -154,9 +260,30 @@
new_tab: true,
},
],
}
],
};
const data_arm = {
cards: [
{
img: "/static/image/longan_3h.png",
title: "LonganPi 3H",
brief: "{{_('H618 4核A53@1.5GHz 小电脑')}}",
btns: [
{
label: "{{_('文档')}}",
link: "{{_('/lpi3h.html')}}",
},
{
label: "{{_('购买')}}",
link: "{{_('https://item.taobao.com/item.htm?ft=t&id=758221950525')}}",
new_tab: true,
},
],
},
{
img: "/static/home/lichee_zero.jpg",
img: "/static/home/lichee_zero.png",
title: "LicheePi Zero",
brief: "Cortex-A7 {{_('迷你')}} Linux {{_('开发板')}}",
btns: [
@@ -172,7 +299,7 @@
],
},
{
img: "/static/home/lichee_nano.jpg",
img: "/static/home/lichee_nano.png",
title: "LicheePi Nano",
brief: "ARM9 {{_('迷你')}} Linux {{_('开发板')}}",
btns: [

View File

@@ -6,19 +6,19 @@ msgstr ""
msgid "/static/home/ax650_presell.jpg"
msgstr ""
#: home.html:96 home.html:109 home.html:122 home.html:135 licheepi.html:132
#: licheepi.html:148 licheepi.html:164 licheepi.html:180 maix.html:116
#: maix.html:133 maix.html:150 maix.html:167 maixsense.html:40
#: maixsense.html:56 tang.html:137 tang.html:153 tang.html:169 tang.html:185
#: tang.html:201 tang.html:217
#: home.html:96 home.html:109 home.html:122 home.html:135 licheepi.html:217
#: licheepi.html:238 licheepi.html:254 licheepi.html:275 licheepi.html:291
#: licheepi.html:307 maix.html:116 maix.html:133 maix.html:150 maix.html:167
#: maixsense.html:40 maixsense.html:56 tang.html:137 tang.html:153
#: tang.html:169 tang.html:185 tang.html:201 tang.html:217
msgid "文档"
msgstr "Documentation"
#: home.html:100 home.html:113 home.html:126 home.html:139 licheepi.html:136
#: licheepi.html:152 licheepi.html:168 licheepi.html:184 maix.html:120
#: maix.html:137 maix.html:154 maix.html:171 maixsense.html:44
#: maixsense.html:60 tang.html:141 tang.html:157 tang.html:173 tang.html:189
#: tang.html:205 tang.html:221
#: home.html:100 home.html:113 home.html:126 home.html:139 licheepi.html:221
#: licheepi.html:242 licheepi.html:258 licheepi.html:279 licheepi.html:295
#: licheepi.html:311 maix.html:120 maix.html:137 maix.html:154 maix.html:171
#: maixsense.html:44 maixsense.html:60 tang.html:141 tang.html:157
#: tang.html:173 tang.html:189 tang.html:205 tang.html:221
msgid "购买"
msgstr "Buy"
@@ -58,90 +58,129 @@ msgstr "MaixSense Sensor"
msgid "其它"
msgstr "Others"
#: licheepi.html:4
msgid "Linux SBC 系列"
msgstr "Linux SBC Series"
#: licheepi.html:5
msgid "Linux RISC-V SBC 系列"
msgstr "Linux RISC-V SBC Series"
#: licheepi.html:25
msgid "Lichee SBC 系列产品参数对比"
msgstr "Lichee SBC Series Product Comparison"
#: licheepi.html:24
msgid "Linux ARM SBC 系列"
msgstr "Linux ARM SBC Series"
#: licheepi.html:29 maix.html:31 tang.html:31
#: licheepi.html:46
msgid "RISC-V SBC 系列产品参数对比"
msgstr "RISC-V SBC Series Product Comparison"
#: licheepi.html:50 licheepi.html:131 maix.html:31 tang.html:31
msgid "参数"
msgstr "Parameter"
#: licheepi.html:38 maix.html:40
#: licheepi.html:58 licheepi.html:139 maix.html:40
msgid "处理器"
msgstr "CPU"
#: licheepi.html:45 maix.html:47
#: licheepi.html:64 licheepi.html:145 maix.html:47
msgid "内存"
msgstr "memory"
#: licheepi.html:52 maix.html:64 tang.html:105
#: licheepi.html:70 licheepi.html:151 maix.html:64 tang.html:105
msgid "储存"
msgstr "storage"
#: licheepi.html:53 licheepi.html:54 licheepi.html:55
#: licheepi.html:71 licheepi.html:72 licheepi.html:73 licheepi.html:152
#: licheepi.html:153
msgid "预留"
msgstr "reserved"
#: licheepi.html:53 licheepi.html:54 licheepi.html:55 licheepi.html:56
#: maix.html:65 maix.html:66 maix.html:67 maix.html:68
#: licheepi.html:71 licheepi.html:72 licheepi.html:73 licheepi.html:152
#: licheepi.html:153 licheepi.html:154 maix.html:65 maix.html:66 maix.html:67
#: maix.html:68
msgid "卡"
msgstr "card"
#: licheepi.html:56 maix.html:65 maix.html:66
msgid "板载"
msgstr "onboard"
#: licheepi.html:59
#: licheepi.html:76 licheepi.html:157
msgid "GPU和显示"
msgstr "GPU and display"
#: licheepi.html:65 licheepi.html:66 licheepi.html:67 licheepi.html:98
#: licheepi.html:99 licheepi.html:100
#: licheepi.html:82 licheepi.html:83 licheepi.html:109 licheepi.html:159
#: licheepi.html:160 licheepi.html:184 licheepi.html:185 licheepi.html:186
msgid "无"
msgstr "no"
#: licheepi.html:70
#: licheepi.html:86 licheepi.html:163
msgid "编解码器"
msgstr "codec"
#: licheepi.html:73 licheepi.html:76 licheepi.html:80 licheepi.html:84
#: licheepi.html:85
#: licheepi.html:89 licheepi.html:92 licheepi.html:95 licheepi.html:165
#: licheepi.html:168 licheepi.html:172 licheepi.html:173
msgid "解码"
msgstr "decode"
#: licheepi.html:73 licheepi.html:77 licheepi.html:81 licheepi.html:85
#: licheepi.html:89 licheepi.html:92 licheepi.html:96 licheepi.html:165
#: licheepi.html:169 licheepi.html:173
msgid "编码"
msgstr "encode"
#: licheepi.html:89 maix.html:78
#: licheepi.html:100 licheepi.html:177 maix.html:78
msgid "操作系统"
msgstr "operating system"
#: licheepi.html:90 licheepi.html:93
#: licheepi.html:101 licheepi.html:102 licheepi.html:178 licheepi.html:180
msgid "主线"
msgstr "mainline"
#: licheepi.html:103 maix.html:85
#: licheepi.html:112 licheepi.html:189 maix.html:85
msgid "典型外设"
msgstr "typical peripherals"
#: licheepi.html:129
#: licheepi.html:127
msgid "ARM SBC 系列产品参数对比"
msgstr "ARM SBC Product Comparison"
#: licheepi.html:154 maix.html:65 maix.html:66
msgid "板载"
msgstr "onboard"
#: licheepi.html:214
msgid "高性能 RISC-V@1.85GHz x4 开发板/平板/笔记本电脑"
msgstr "High performance RISC-V@1.85GHz x4 development board/tablet/laptop"
msgstr "High performance RISC-V@1.85GHz x4 dev board/tablet/laptop"
#: licheepi.html:145
#: licheepi.html:226
msgid "更多"
msgstr "More"
#: licheepi.html:235
msgid "高性价比迷你 RISC-V IPC/屏显开发板"
msgstr "High cost-effective mini RISC-V IPC/display dev board"
#: licheepi.html:239
msgid "/licheerv-nano"
msgstr "/hardware/en/lichee/RV_Nano/1_intro.html"
#: licheepi.html:243
msgid "https://item.taobao.com/item.htm?id=764939520376"
msgstr "https://www.aliexpress.us/item/325680633"
#: licheepi.html:251
msgid "高集成度入门级 RISC-V Linux 开发板"
msgstr "Highly integrated entry-level RISC-V Linux development board"
msgstr "Highly integrated entry-level RISC-V Linux dev board"
#: licheepi.html:161 licheepi.html:177
#: licheepi.html:272
msgid "H618 4核A53@1.5GHz 小电脑"
msgstr "H618 4-core A53@1.5GHz mini PC"
#: licheepi.html:276
msgid "/lpi3h.html"
msgstr "/hardware/zh/longan/h618/lpi3h/1_intro.html"
#: licheepi.html:280
msgid "https://item.taobao.com/item.htm?ft=t&id=758221950525"
msgstr "https://www.aliexpress.us/item/100500639"
#: licheepi.html:288 licheepi.html:304
msgid "迷你"
msgstr "mini"
#: licheepi.html:161 licheepi.html:177
#: licheepi.html:288 licheepi.html:304
msgid "开发板"
msgstr "dev board"
@@ -366,3 +405,9 @@ msgstr "Hardcore Inside FPGA Board"
#~ msgid "了解更多"
#~ msgstr "Learn more"
#~ msgid "Linux SBC 系列"
#~ msgstr "Linux SBC Series"
#~ msgid "Linux ARM SBC 系列"
#~ msgstr ""

View File

@@ -6,19 +6,19 @@ msgstr ""
msgid "/static/home/ax650_presell.jpg"
msgstr ""
#: home.html:96 home.html:109 home.html:122 home.html:135 licheepi.html:132
#: licheepi.html:148 licheepi.html:164 licheepi.html:180 maix.html:116
#: maix.html:133 maix.html:150 maix.html:167 maixsense.html:40
#: maixsense.html:56 tang.html:137 tang.html:153 tang.html:169 tang.html:185
#: tang.html:201 tang.html:217
#: home.html:96 home.html:109 home.html:122 home.html:135 licheepi.html:217
#: licheepi.html:238 licheepi.html:254 licheepi.html:275 licheepi.html:291
#: licheepi.html:307 maix.html:116 maix.html:133 maix.html:150 maix.html:167
#: maixsense.html:40 maixsense.html:56 tang.html:137 tang.html:153
#: tang.html:169 tang.html:185 tang.html:201 tang.html:217
msgid "文档"
msgstr ""
#: home.html:100 home.html:113 home.html:126 home.html:139 licheepi.html:136
#: licheepi.html:152 licheepi.html:168 licheepi.html:184 maix.html:120
#: maix.html:137 maix.html:154 maix.html:171 maixsense.html:44
#: maixsense.html:60 tang.html:141 tang.html:157 tang.html:173 tang.html:189
#: tang.html:205 tang.html:221
#: home.html:100 home.html:113 home.html:126 home.html:139 licheepi.html:221
#: licheepi.html:242 licheepi.html:258 licheepi.html:279 licheepi.html:295
#: licheepi.html:311 maix.html:120 maix.html:137 maix.html:154 maix.html:171
#: maixsense.html:44 maixsense.html:60 tang.html:141 tang.html:157
#: tang.html:173 tang.html:189 tang.html:205 tang.html:221
msgid "购买"
msgstr ""
@@ -58,90 +58,129 @@ msgstr ""
msgid "其它"
msgstr ""
#: licheepi.html:4
msgid "Linux SBC 系列"
#: licheepi.html:5
msgid "Linux RISC-V SBC 系列"
msgstr ""
#: licheepi.html:25
msgid "Lichee SBC 系列产品参数对比"
#: licheepi.html:24
msgid "Linux ARM SBC 系列"
msgstr ""
#: licheepi.html:29 maix.html:31 tang.html:31
#: licheepi.html:46
msgid "RISC-V SBC 系列产品参数对比"
msgstr ""
#: licheepi.html:50 licheepi.html:131 maix.html:31 tang.html:31
msgid "参数"
msgstr ""
#: licheepi.html:38 maix.html:40
#: licheepi.html:58 licheepi.html:139 maix.html:40
msgid "处理器"
msgstr ""
#: licheepi.html:45 maix.html:47
#: licheepi.html:64 licheepi.html:145 maix.html:47
msgid "内存"
msgstr ""
#: licheepi.html:52 maix.html:64 tang.html:105
#: licheepi.html:70 licheepi.html:151 maix.html:64 tang.html:105
msgid "储存"
msgstr ""
#: licheepi.html:53 licheepi.html:54 licheepi.html:55
#: licheepi.html:71 licheepi.html:72 licheepi.html:73 licheepi.html:152
#: licheepi.html:153
msgid "预留"
msgstr ""
#: licheepi.html:53 licheepi.html:54 licheepi.html:55 licheepi.html:56
#: maix.html:65 maix.html:66 maix.html:67 maix.html:68
#: licheepi.html:71 licheepi.html:72 licheepi.html:73 licheepi.html:152
#: licheepi.html:153 licheepi.html:154 maix.html:65 maix.html:66 maix.html:67
#: maix.html:68
msgid "卡"
msgstr ""
#: licheepi.html:56 maix.html:65 maix.html:66
msgid "板载"
msgstr ""
#: licheepi.html:59
#: licheepi.html:76 licheepi.html:157
msgid "GPU和显示"
msgstr ""
#: licheepi.html:65 licheepi.html:66 licheepi.html:67 licheepi.html:98
#: licheepi.html:99 licheepi.html:100
#: licheepi.html:82 licheepi.html:83 licheepi.html:109 licheepi.html:159
#: licheepi.html:160 licheepi.html:184 licheepi.html:185 licheepi.html:186
msgid "无"
msgstr ""
#: licheepi.html:70
#: licheepi.html:86 licheepi.html:163
msgid "编解码器"
msgstr ""
#: licheepi.html:73 licheepi.html:76 licheepi.html:80 licheepi.html:84
#: licheepi.html:85
#: licheepi.html:89 licheepi.html:92 licheepi.html:95 licheepi.html:165
#: licheepi.html:168 licheepi.html:172 licheepi.html:173
msgid "解码"
msgstr ""
#: licheepi.html:73 licheepi.html:77 licheepi.html:81 licheepi.html:85
#: licheepi.html:89 licheepi.html:92 licheepi.html:96 licheepi.html:165
#: licheepi.html:169 licheepi.html:173
msgid "编码"
msgstr ""
#: licheepi.html:89 maix.html:78
#: licheepi.html:100 licheepi.html:177 maix.html:78
msgid "操作系统"
msgstr ""
#: licheepi.html:90 licheepi.html:93
#: licheepi.html:101 licheepi.html:102 licheepi.html:178 licheepi.html:180
msgid "主线"
msgstr ""
#: licheepi.html:103 maix.html:85
#: licheepi.html:112 licheepi.html:189 maix.html:85
msgid "典型外设"
msgstr ""
#: licheepi.html:129
#: licheepi.html:127
msgid "ARM SBC 系列产品参数对比"
msgstr ""
#: licheepi.html:154 maix.html:65 maix.html:66
msgid "板载"
msgstr ""
#: licheepi.html:214
msgid "高性能 RISC-V@1.85GHz x4 开发板/平板/笔记本电脑"
msgstr ""
#: licheepi.html:145
#: licheepi.html:226
msgid "更多"
msgstr ""
#: licheepi.html:235
msgid "高性价比迷你 RISC-V IPC/屏显开发板"
msgstr ""
#: licheepi.html:239
msgid "/licheerv-nano"
msgstr ""
#: licheepi.html:243
msgid "https://item.taobao.com/item.htm?id=764939520376"
msgstr ""
#: licheepi.html:251
msgid "高集成度入门级 RISC-V Linux 开发板"
msgstr ""
#: licheepi.html:161 licheepi.html:177
#: licheepi.html:272
msgid "H618 4核A53@1.5GHz 小电脑"
msgstr ""
#: licheepi.html:276
msgid "/lpi3h.html"
msgstr ""
#: licheepi.html:280
msgid "https://item.taobao.com/item.htm?ft=t&id=758221950525"
msgstr ""
#: licheepi.html:288 licheepi.html:304
msgid "迷你"
msgstr ""
#: licheepi.html:161 licheepi.html:177
#: licheepi.html:288 licheepi.html:304
msgid "开发板"
msgstr ""

View File

@@ -6,19 +6,19 @@ msgstr ""
msgid "/static/home/ax650_presell.jpg"
msgstr ""
#: home.html:96 home.html:109 home.html:122 home.html:135 licheepi.html:132
#: licheepi.html:148 licheepi.html:164 licheepi.html:180 maix.html:116
#: maix.html:133 maix.html:150 maix.html:167 maixsense.html:40
#: maixsense.html:56 tang.html:137 tang.html:153 tang.html:169 tang.html:185
#: tang.html:201 tang.html:217
#: home.html:96 home.html:109 home.html:122 home.html:135 licheepi.html:217
#: licheepi.html:238 licheepi.html:254 licheepi.html:275 licheepi.html:291
#: licheepi.html:307 maix.html:116 maix.html:133 maix.html:150 maix.html:167
#: maixsense.html:40 maixsense.html:56 tang.html:137 tang.html:153
#: tang.html:169 tang.html:185 tang.html:201 tang.html:217
msgid "文档"
msgstr ""
#: home.html:100 home.html:113 home.html:126 home.html:139 licheepi.html:136
#: licheepi.html:152 licheepi.html:168 licheepi.html:184 maix.html:120
#: maix.html:137 maix.html:154 maix.html:171 maixsense.html:44
#: maixsense.html:60 tang.html:141 tang.html:157 tang.html:173 tang.html:189
#: tang.html:205 tang.html:221
#: home.html:100 home.html:113 home.html:126 home.html:139 licheepi.html:221
#: licheepi.html:242 licheepi.html:258 licheepi.html:279 licheepi.html:295
#: licheepi.html:311 maix.html:120 maix.html:137 maix.html:154 maix.html:171
#: maixsense.html:44 maixsense.html:60 tang.html:141 tang.html:157
#: tang.html:173 tang.html:189 tang.html:205 tang.html:221
msgid "购买"
msgstr ""
@@ -58,90 +58,129 @@ msgstr ""
msgid "其它"
msgstr ""
#: licheepi.html:4
msgid "Linux SBC 系列"
#: licheepi.html:5
msgid "Linux RISC-V SBC 系列"
msgstr ""
#: licheepi.html:25
msgid "Lichee SBC 系列产品参数对比"
#: licheepi.html:24
msgid "Linux ARM SBC 系列"
msgstr ""
#: licheepi.html:29 maix.html:31 tang.html:31
#: licheepi.html:46
msgid "RISC-V SBC 系列产品参数对比"
msgstr ""
#: licheepi.html:50 licheepi.html:131 maix.html:31 tang.html:31
msgid "参数"
msgstr ""
#: licheepi.html:38 maix.html:40
#: licheepi.html:58 licheepi.html:139 maix.html:40
msgid "处理器"
msgstr ""
#: licheepi.html:45 maix.html:47
#: licheepi.html:64 licheepi.html:145 maix.html:47
msgid "内存"
msgstr ""
#: licheepi.html:52 maix.html:64 tang.html:105
#: licheepi.html:70 licheepi.html:151 maix.html:64 tang.html:105
msgid "储存"
msgstr ""
#: licheepi.html:53 licheepi.html:54 licheepi.html:55
#: licheepi.html:71 licheepi.html:72 licheepi.html:73 licheepi.html:152
#: licheepi.html:153
msgid "预留"
msgstr ""
#: licheepi.html:53 licheepi.html:54 licheepi.html:55 licheepi.html:56
#: maix.html:65 maix.html:66 maix.html:67 maix.html:68
#: licheepi.html:71 licheepi.html:72 licheepi.html:73 licheepi.html:152
#: licheepi.html:153 licheepi.html:154 maix.html:65 maix.html:66 maix.html:67
#: maix.html:68
msgid "卡"
msgstr ""
#: licheepi.html:56 maix.html:65 maix.html:66
msgid "板载"
msgstr ""
#: licheepi.html:59
#: licheepi.html:76 licheepi.html:157
msgid "GPU和显示"
msgstr ""
#: licheepi.html:65 licheepi.html:66 licheepi.html:67 licheepi.html:98
#: licheepi.html:99 licheepi.html:100
#: licheepi.html:82 licheepi.html:83 licheepi.html:109 licheepi.html:159
#: licheepi.html:160 licheepi.html:184 licheepi.html:185 licheepi.html:186
msgid "无"
msgstr ""
#: licheepi.html:70
#: licheepi.html:86 licheepi.html:163
msgid "编解码器"
msgstr ""
#: licheepi.html:73 licheepi.html:76 licheepi.html:80 licheepi.html:84
#: licheepi.html:85
#: licheepi.html:89 licheepi.html:92 licheepi.html:95 licheepi.html:165
#: licheepi.html:168 licheepi.html:172 licheepi.html:173
msgid "解码"
msgstr ""
#: licheepi.html:73 licheepi.html:77 licheepi.html:81 licheepi.html:85
#: licheepi.html:89 licheepi.html:92 licheepi.html:96 licheepi.html:165
#: licheepi.html:169 licheepi.html:173
msgid "编码"
msgstr ""
#: licheepi.html:89 maix.html:78
#: licheepi.html:100 licheepi.html:177 maix.html:78
msgid "操作系统"
msgstr ""
#: licheepi.html:90 licheepi.html:93
#: licheepi.html:101 licheepi.html:102 licheepi.html:178 licheepi.html:180
msgid "主线"
msgstr ""
#: licheepi.html:103 maix.html:85
#: licheepi.html:112 licheepi.html:189 maix.html:85
msgid "典型外设"
msgstr ""
#: licheepi.html:129
#: licheepi.html:127
msgid "ARM SBC 系列产品参数对比"
msgstr ""
#: licheepi.html:154 maix.html:65 maix.html:66
msgid "板载"
msgstr ""
#: licheepi.html:214
msgid "高性能 RISC-V@1.85GHz x4 开发板/平板/笔记本电脑"
msgstr ""
#: licheepi.html:145
#: licheepi.html:226
msgid "更多"
msgstr ""
#: licheepi.html:235
msgid "高性价比迷你 RISC-V IPC/屏显开发板"
msgstr ""
#: licheepi.html:239
msgid "/licheerv-nano"
msgstr ""
#: licheepi.html:243
msgid "https://item.taobao.com/item.htm?id=764939520376"
msgstr ""
#: licheepi.html:251
msgid "高集成度入门级 RISC-V Linux 开发板"
msgstr ""
#: licheepi.html:161 licheepi.html:177
#: licheepi.html:272
msgid "H618 4核A53@1.5GHz 小电脑"
msgstr ""
#: licheepi.html:276
msgid "/lpi3h.html"
msgstr ""
#: licheepi.html:280
msgid "https://item.taobao.com/item.htm?ft=t&id=758221950525"
msgstr ""
#: licheepi.html:288 licheepi.html:304
msgid "迷你"
msgstr ""
#: licheepi.html:161 licheepi.html:177
#: licheepi.html:288 licheepi.html:304
msgid "开发板"
msgstr ""
@@ -385,3 +424,15 @@ msgstr ""
#~ msgid "了解更多"
#~ msgstr ""
#~ msgid "Linux SBC 系列"
#~ msgstr ""
#~ msgid "lpi3h"
#~ msgstr ""
#~ msgid "Linux ARM SBC 系列"
#~ msgstr ""
#~ msgid "Lichee SBC 系列产品参数对比"
#~ msgstr ""

View File

@@ -107,7 +107,7 @@
const data_maix = {
cards: [
{
img: "/static/home/maixbit.jpg",
img: "/static/home/maixbit.png",
title: "Maix-I (K210)",
brief:
"{{_('带硬件 AI 加速的 MCU配合易用的软件快速落地低成本 AI 应用')}}",
@@ -124,7 +124,7 @@
],
},
{
img: "/static/home/m2dock.jpg",
img: "/static/home/m2dock.png",
title: "Maix-II (V831)",
brief:
"{{_('硬件 AI 加速 + Linux + 易用的软件,教育、工业视觉、智能家居场景绝配')}}",
@@ -141,7 +141,7 @@
],
},
{
img: "/static/home/m3axpi.jpg",
img: "/static/home/m3axpi.png",
title: "Maix-III (AXeraPi)",
brief:
"{{_('3.6Tops AI ISP微光夜视大量常见 AI 模型支持,安防智能 IPC')}}",
@@ -158,7 +158,7 @@
],
},
{
img: "/static/home/m4ndock.jpg",
img: "/static/home/m4ndock.png",
title: "Maix-IV (AXeraPi-Pro)",
brief:
"{{_('10Tops AI 算力32 路 1080p 高清 AI 视频监控AI 大模型支持')}}",

View File

@@ -129,7 +129,7 @@
const data_tang = {
cards: [
{
img: "/hardware/assets/Tang/mega_138k/mega_138k_top.png",
img: "/static/home/Tang_Mega_138K_Pro.png",
title: "Tang Mega 138K Pro",
brief: "{{_('可以高速通信的大容量 FPGA 开发板')}}",
btns: [
@@ -145,7 +145,7 @@
],
},
{
img: "/hardware/assets/Tang/primer_25k/25k_dock_top.jpg",
img: "/static/home/Tang_Primer_25K.png",
title: "Tang Primer 25K",
brief: "{{_('自由拓展的 FPGA 开发板')}}",
btns: [
@@ -161,7 +161,7 @@
],
},
{
img: "/hardware/zh/tang/tang-primer-20k/assets/dock-up.png",
img: "/static/home/Tang_Primer_20K.png",
title: "Tang Primer 20K",
brief: "{{_('自带多种外设接口的 FPGA 开发板')}}",
btns: [
@@ -177,7 +177,7 @@
],
},
{
img: "/hardware/assets/Tang/Nano_20K/Nano_20K.png",
img: "/static/home/Tang_Nano_20K.png",
title: "Tang Nano 20K",
brief: "{{_('适用于模拟复古游戏机的 FPGA 开发板')}}",
btns: [
@@ -193,7 +193,7 @@
],
},
{
img: "/hardware/assets/Tang/Nano-9K/9K.png",
img: "/static/home/Tang_Nano_9K.png",
title: "Tang Nano 9K",
brief: "{{_('适合 RiscV 软核验证的 FPGA 开发板')}}",
btns: [
@@ -209,7 +209,7 @@
],
},
{
img: "/hardware/assets/Tang/Nano_4K/Nano_4K.png",
img: "/static/home/Tang_Nano_4K.png",
title: "Tang Nano 4K",
brief: "{{_('芯片内部含有 MCU 的 FPGA 开发板')}}",
btns: [

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

BIN
static/home/lichee_nano.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

BIN
static/home/lichee_zero.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

BIN
static/home/m2dock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

BIN
static/home/m3axpi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

BIN
static/home/m4ndock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

BIN
static/home/maixbit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
static/image/longan_3h.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB