Difference between revisions of "How to setup Murata LBEH59XUHC WiFi/BT module"

From IGEP - ISEE Wiki

Jump to: navigation, search
Line 1: Line 1:
 
 
== Ad-hoc ==
 
== Ad-hoc ==
  
Line 10: Line 9:
 
  # Setting ip address
 
  # Setting ip address
 
  ip addr add 192.168.6.1/24 dev wlan0
 
  ip addr add 192.168.6.1/24 dev wlan0
 +
 +
== wl12xx debug ==
 +
 +
Make sure that DYNAMIC DEBUG is enabled in your kernel configuration.
 +
 +
CONFIG_DYNAMIC_DEBUG=y
 +
 +
 +
  
 
== Links ==
 
== Links ==

Revision as of 10:11, 2 October 2013

Ad-hoc

# Setting the operation mode to ad-hoc.
iw dev wlan0 set type ibss
# Setting wlan0 interface up.
ip link set wlan0 up
# Setting ESSID and frequency (2427MHz - channel 4)
iw dev wlan0 ibss join "MyAd-Hoc" 2427
# Setting ip address
ip addr add 192.168.6.1/24 dev wlan0

wl12xx debug

Make sure that DYNAMIC DEBUG is enabled in your kernel configuration.

CONFIG_DYNAMIC_DEBUG=y



Links