|
无线信号强度和覆盖范围肯定与无线发射功率有有关,
官方的无线功率达到了27dBm,即500mW,
通常China的家用无线路由器通常最大20dBm, 即100mW。
梅林默认无线发射功率肯定比斐讯原厂要小得多。
不知道这版梅林的无线的国家设定是哪个,看2.4G信道最大只到11,应该是USA。
那么无线功率应该是25dBm,即320mW。
我使用这版梅林,感觉无线信号使用效果与官版相差不大。
附官方root版无线查询命令:
# wl status
# Print information about current network association
# 查看2.4G 状态
wl -i eth1 status
# 查看5G 状态
wl -i eth2 status
# wl curpower
# Return current tx power settings
# 查看2.4G当前功率
wl -i eth1 curpower
# 查看5G当前功率
wl -i eth2 curpower
# wl txpwr_target_max
# Return current max tx target power settings.
# 查看2.4G当前最大功率
wl -i eth1 txpwr_target_max
# 查看5G当前最大功率
wl -i eth2 txpwr_target_max
# wl txpwr1
# Set tx power in in various units. Choose one of (default: dBm):
# -d dBm units (range: -32 - 31)
# -q quarter dBm units (range: -128 - 127)
# -m milliwatt units
# Can be combined with:
# -o turn on override to disable regulatory and other limitations
# 临时设置,重启恢复(胡乱设置可能损坏硬件)
# 临时设置2.4G功率 为20dBm
wl -i eth1 txpwr1 -o -d 20
# 临时设置2.4G功率 为20dBm
wl -i eth2 txpwr1 -o -d 20 |
|