Industrial router/IPQ4019/IPQ4029 Chipset WIFI 5 Wireless solution

Adopting PH2.0 double-row pin plug-in and pull-out simple installation method, it can be designed to connect different types of interface boards to expand wireless routing, network storage, advertising hotspots, 4G, DTU data transmission, serial port to WIFI, remote monitoring and other multi-functional products Application; simplifies the development and design process of wireless network products to the greatest extent.Using dual band

This is a standard mini PCIe interface, full-size dual-channel 11ac dual-band, supports Windows and Linux systems, because in the traditional industrial control field, most of them are wired Gigabit network ports, this kind of wireless network card that meets the 11ac standard dual-band dual-channel is widely used in industry The all-in-one machine field has been widely used!

DR40X9 is Featuring with industrial-grade IPQ4019/IPQ4029 chipset

Featuring with industrial-grade IPQ4019/IPQ4029 chipset
Integrated with 2x 2 5G high power Radio module and 2x2 2.4G high power Radio module
Support 4.940GHz to 5.825GHz Frequency Range
Support 2.400GHz to 2.482GHz
Support 2 x 5G MMCX Connectors and 2x2.4G MMCX
Support 5MHz/10MHz/20MHz/40MHz/80MHz Bandwidth
Support 11ABGN/AC
Support fixed data rate
RoHS compliance ensure a high level protection of human health and the environment from risks that can be posed by chemicals
Our Firmware supports all the modules of Quectel
Support Openwifi
Support QSDK
Support Openwrt

Parameter Rating Unit
Supply Voltage 24V~48 V
Operating Temperature Range -40 to +70 ºC
Storage Temperature Range -45 to +105 ºC
Operating Humidity Range 5 to +95 (non-condensing) %
Storage Humidity Range 0 to +90 (non-condensing) %

Symbol Parameter
CPU IPQ4029(Quad core ARM Cortex A7 at 716.8 MHz)
Antenna Connector 2 x 5G MMCX connectors;2x2.4G MMCX
10/100/1000Mbps Gigabit Ethernet 2 x 5G MMCX connectors;2x2.4G MMCX
10/100/1000Mbps Gigabit Ethernet 2xRJ45
SFP connector 1xSFP fiber module connector (optional)
3G/4G connector 1xminipcie 3G/4G connector support with two sim card
USB connector 1xUSB 3.0 connector
POE 24V~48V passive POE
DC Jack 24V~48V power supply
ROHS Compliance YES
Dimension 115mm x 105mm x 16mm
Max Power 48.1V x 0.180A= 8.658W
Nor Flash 2MB~32MB
Nand Flash 128MB
DDR 256MB~512MB


Wallys Communications (SuZhou) Co.,Ltd was established in 2010. The company is a techno-innovation enterprise specializing in the independent R&D, production and sales of wireless network products and offering wireless, which is a professional supplier specializing in product design, manufacturing. As a specialized manufacturer and exporter for these products in China,We sincerely hope to establish business relations with your esteemed corporation. We mainly develop high power wireless products based on Quacomm chip such asIPQ6000/IPQ6018/IPQ6010/IPQ4019/IPQ4029/IPQ8072/IPQ8074/QCN9074 and so on

The company utilizes its own professional knowledge and the top research and development team unceasingly breaks through, we have the hardware, the software, the RF, the antenna, the enclosure and so on design ability.

To provide customers with customized services, products from Design - Test -Certification - Production of one-stop convenient services.

Wallys independent research and development and production of standard and proprietary protocol of wireless bridge, wireless AP, and frequency conversion equipment related products, comprehensive application in security, transportation, ports, oil fields, mines, logistics, electric power, tourism, forest fire prevention, safe city and other industries, won the general customers the consistent high praise, has the good public praise and reputation in the industry.

BY:Wallys Communications (Suzhou ) Co., LTD

Wallys 802.11ax, wifi 6, IPQ4029,IPQ4019,IPQ6018,IPQ6000.Router board, wireless card.Access Point.,

EMAIL:sales4@wallystech.com

你运行了 `repo list`,输出如下: ``` Iplatform : Router/Iplatform Iplatform/packages/private/wifix : wifi-driver/wifix Iplatform/packages/submodules/easymesh : Router/Iplatform/easymesh Iplatform/packages/submodules/mesh_aps : Router/Iplatform/mesh_aps bcm504L04 : Router/SDK/BCM/bcm504L04 bcm504L04/bcm963xx_5.04L.04/bcmdrivers/broadcom/net/wl : wifi-driver/brcm/be_17.x ``` --- ## ✅ 解释:`repo list` 的作用 ### 🔹 命令格式: ```bash repo list [OPTIONS] ``` ### 🔹 输出格式: ``` <project-path> : <project-name> ``` - **左边(冒号前)**:项目在本地工作区的相对路径(可用于 `cd` 进入) - **右边(冒号后)**:该项目在 manifest 中定义的 `name` 属性(用于远程仓库标识) --- ## ✅ 详细解析你的输出 | 本地路径 | 项目名称(manifest 中 name) | 对应 XML 中的 project | |--------|----------------------------|-----------------------| | `Iplatform` | `Router/Iplatform` | `<project path="Iplatform" name="Router/Iplatform">` | | `Iplatform/packages/private/wifix` | `wifi-driver/wifix` | `<project path="Iplatform/packages/private/wifix" name="wifi-driver/wifix">` | | `Iplatform/packages/submodules/easymesh` | `Router/Iplatform/easymesh` | ... | | `bcm504L04` | `Router/SDK/BCM/bcm504L04` | ... | | `bcm504L04/bcm963xx_5.04L.04/bcmdrivers/broadcom/net/wl` | `wifi-driver/brcm/be_17.x` | ... | 📌 这些路径可以用于: - `cd Iplatform` 切换到该项目目录; - 在 `repo forall` 中作为过滤条件; - 手动执行 git 操作时定位项目。 --- ## ✅ 实用技巧:结合 `repo forall` 使用路径 你可以使用这些路径来批量执行命令。例如: ### 示例 1:查看所有项目的当前分支 ```bash repo forall -c 'git branch --show-current' ``` ### 示例 2:只对某些项目操作(比如 wl 和 wifix) ```bash repo forall Iplatform/packages/private/wifix bcm504L04/bcm963xx_5.04L.04/bcmdrivers/broadcom/net/wl -c 'git status' ``` ### 示例 3:进入某个项目目录开发 ```bash cd bcm504L04/bcm963xx_5.04L.04/bcmdrivers/broadcom/net/wl git log -10 ``` --- ## ✅ 如何通过项目名查找路径?(反向查询) 如果你只知道 `name="wifi-driver/wifix"`,想查它的本地路径: ```bash repo list | grep "wifi-driver/wifix" ``` 输出: ``` Iplatform/packages/private/wifix : wifi-driver/wifix ``` 即可知道路径是 `Iplatform/packages/private/wifix` --- ## ✅ 如何导出所有项目路径列表(脚本可用)? ```bash repo list | cut -f1 ``` 输出: ``` Iplatform Iplatform/packages/private/wifix Iplatform/packages/submodules/easymesh Iplatform/packages/submodules/mesh_aps bcm504L04 bcm504L04/bcm963xx_5.04L.04/bcmdrivers/broadcom/net/wl ``` 可用于循环处理: ```bash for path in $(repo list | cut -f1); do echo "Processing $path" cd "$path" && git status done ``` --- ## ✅ 回顾之前的错误:为什么 `.` 不行? 因为 `repo start dev_branch .` 中的 `.` 并不在 `repo list` 的路径列表中,`repo` 找不到叫 `.` 的项目。 ✅ 正确做法是省略项目参数,让 `repo start` 自动应用到所有项目: ```bash repo start dev_BE900v2_customization ``` 它会自动遍历 `repo list` 中的所有项目并创建分支。 --- ## ✅ 补充:常用 repo 查询命令 | 命令 | 用途 | |------|------| | `repo list` | 查看所有项目的本地路径和名称映射 | | `repo status` | 查看各项目的修改状态 | | `repo branches` | 查看当前各项目所处的分支 | | `repo sync` | 同步所有项目到 manifest 指定版本 | | `repo forall -c '<cmd>'` | 在所有项目中执行 shell 命令 | ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值