Hi all,
we have verified the 2.4GHz MIMO configured SoftAP on the AM335xEVM/WL18xx platform, documented here
http://e2e.ti.com/support/low_power_rf/f/307/p/292162/1018884.aspx#1018884
We need now to get the right configuration for a SoftAP with 5GHz band and SISO40, based on the same platform. Based on Victor's input I have done the following:
First hostapd.conf
gunter@gunter-Latitude-E4300:~/fs/am335x/etc$ diff -Nurp hostapd.conf.orig hostapd.conf
--- hostapd.conf.orig 2013-10-08 13:10:40.655486486 -0700
+++ hostapd.conf 2013-10-08 13:17:33.117531765 -0700
@@ -88,7 +88,7 @@ ssid=TexasInstruments_0001
# Country code (ISO/IEC 3166-1). Used to set regulatory domain.
# Set as needed to indicate country in which device is operating.
# This can limit available channels and transmit power.
-#country_code=US
+country_code=US
# Enable IEEE 802.11d. This advertises the country_code and the set of allowed
# channels and transmit power levels based on the regulatory limits. The
@@ -99,7 +99,7 @@ ssid=TexasInstruments_0001
# Operation mode (a = IEEE 802.11a, b = IEEE 802.11b, g = IEEE 802.11g,
# Default: IEEE 802.11b
-hw_mode=g
+hw_mode=a
# Channel number (IEEE 802.11)
# (default: 0, i.e., not set)
@@ -107,7 +107,7 @@ hw_mode=g
# channel will need to be configured separately with iwconfig.
# When set to 0, automatic channel selection will be engaged. A channel
# will be selected from the desired hw_mode.
-channel=6
+channel=40
# Automatic channel selection (ACS) whitelist
# (default: not set)
@@ -388,7 +388,7 @@ wmm_ac_vo_acm=0
# 0 = disabled (default)
# 1 = enabled
# Note: You will also need to enable WMM for full HT functionality.
-#ieee80211n=1
+ieee80211n=1
# ht_capab: HT capabilities (list of flags)
# LDPC coding capability: [LDPC] = supported
@@ -423,7 +423,7 @@ wmm_ac_vo_acm=0
# DSSS/CCK Mode in 40 MHz: [DSSS_CCK-40] = allowed (not allowed if not set)
# PSMP support: [PSMP] (disabled if not set)
# L-SIG TXOP protection support: [LSIG-TXOP-PROT] (disabled if not set)
-#ht_capab=[HT40-][SHORT-GI-20][SHORT-GI-40]
+ht_capab=[HT40-][SHORT-GI-20][SHORT-GI-40]
# Require stations to support HT PHY (reject association if they do not)
#require_ht=1
Secondly, wlconf command line
#rmmod wlcore_sdio
#cd /usr/bin/wlconf #./wlconf -o /lib/firmware/ti-connectivity/wl18xx-conf.bin \ -I official_inis/WL8_System_parameters.ini
#./wlconf -i /lib/firmware/ti-connectivity/wl18xx-conf.bin \
-o /lib/firmware/ti-connectivity/wl18xx-conf.bin \
-s wl18xx.ht.mode=0x01
#modprobe wlcore_sdio
However when we bring up the SoftAP, here with the Matrix GUI, the SSID does not show up, so something must not be working right. Could you help me with what is missing?
Thanks,
--Gunter