Wallys/IPQ4018/IPQ4028 2x2 2.4Ghz 5Ghz //wifi5 Support 11ABGN/AC

BitPathfinder
• 阅读 617

Wallys/IPQ4018/IPQ4028 2x2 2.4Ghz 2x2 5Ghz Industrial-grade //wifi5 Support 11ABGN/AC

IPQ40x8/IPQ40x9 is the industry's first Wave 2 802.11AC SoC WiFi solution from Qualcomm Atheros, representing another leap forward in home wireless networking. It is understood that the chip models included in this series are IPQ4018, IPQ4019, IPQ4028 and IPQ4029. Ipq40x8/40x9 is Qualcomm Atheros' latest smart gateway platform that supports dual-band 2X2 MIMO, enabling manufacturers to bring Wave 2 802.11AC into the mainstream.

IPQ40x8/IPQ40x9 supports multiple configurations: dual 5GHz, 2.4ghz + 5GHz, and even supports 60GHz band through PCI Express interface. Meanwhile, IPQ40X8/40X9 has rich peripheral interfaces, including USB 3.0, LCD, SD/eMMC, multi-channel audio interface, LTE and Ethernet.
Wallys/IPQ4018/IPQ4028 2x2 2.4Ghz 5Ghz //wifi5 Support 11ABGN/AC
MT7915/MT7975/IPQ6000/IPQ6018/IPQ6010/IPQ4019/IPQ4029/ipq4018/IPQ4028/IPQ8072/IPQ8072A/IPQ8074/IPQ8074A/QCN6024/QCN9074/QCN9072/QCN9024/IPQ5018/AR9223/QCA9880/QCA9882 /AR9582/AR9531/AR9344 /AX200NGW/ AP9342
With over 15 years of experience in wireless industry and penetrating market olfaction, Wallys has designed and manufactured many high quality and cost-effective routerboards and wireless network cards. 

In the complex market, Wallys products stand out and are affirmed by partners. From 802.11 a - ax, Wallys always keeps up with the most cutting-edge wireless technology, aimed to help customers take the preemptive opportunities to occupy the market and lead a win -win cooperation.
BY:Wallys Communications (Suzhou ) Co., LTD
EMAIL:​sales3@wallystech.com

DR40X8H

Wallys/IPQ4018/IPQ4028 2x2 2.4Ghz 5Ghz //wifi5 Support 11ABGN/AC
https://www.wallystech.com/Ro...
https://www.youtube.com/watch...

Featuring with industrial-grade IPQ4018/IPQ4028 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

20MHz/40MHz/80MHz Bandwidth

Support 11ABGN/AC

RoHS compliance ensure a high level protection of human health and the environment from risks that can be posed by chemicals

Absolute Maximum Rating

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

   Hardware Specifications

Symbol Parameter
CPU IPQ4018 (Quad core ARM Cortex A7 at 710 MHz)
Antenna Connector 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
Nor Flash 2MB~32MB
Nand Flash 128MB
DDR 256MB

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Karen110 Karen110
3年前
一篇文章带你了解JavaScript日期
日期对象允许您使用日期(年、月、日、小时、分钟、秒和毫秒)。一、JavaScript的日期格式一个JavaScript日期可以写为一个字符串:ThuFeb02201909:59:51GMT0800(中国标准时间)或者是一个数字:1486000791164写数字的日期,指定的毫秒数自1970年1月1日00:00:00到现在。1\.显示日期使用
美凌格栋栋酱 美凌格栋栋酱
6个月前
Oracle 分组与拼接字符串同时使用
SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
1年前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
4年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Cindy-wallys Cindy-wallys
2年前
Wallys/IPQ4018/IPQ4028 2x2 2.4Ghz 2x2 5Ghz Industrial WIFI5 router/Support 11ABGN/AC
FeaturingwithindustrialgradeIPQ4018/IPQ4028chipsetIntegratedwith2x25GhighpowerRadiomoduleand2x22.4GhighpowerRadiomoduleSupport4.940GHzto5.825GHzFrequencyRange;Support2.400GHzto2.482GHzSupport2x5GMMCXConnectorsand2x2.4GMMCX
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Python进阶者 Python进阶者
1年前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
Wallys/IPQ4018/IPQ4028 2x2 2.4Ghz 2x2 5Ghz Industrial-grade //wifi5 Support 11ABGN/AC
Wallys/IPQ4018(https://www.wallystech.com/Routerboard/DR40X8HQualcommIPQ4018IPQ40282T2RDualBand24GHz5GHzhighpower
BitPathfinder
BitPathfinder
Lv1
再相逢,相顾无言,却无泪千行。
文章
3
粉丝
0
获赞
0