Changes between Initial Version and Version 1 of 802.11/Usage/IBSS


Ignore:
Timestamp:
Oct 22, 2014, 4:46:27 PM (10 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/Usage/IBSS

    v1 v1  
     1[[TracNav(802.11/TOC)]]
     2
     3= Using the 802.11 Reference Design: IBSS Application =
     4
     5== Ethernet ==
     6The IBSS uses ETH A as its source and sink for all wireless data packets. The IBSS code assumes a single Ethernet device is connected to ETH A, such as a PC or network camera. The IBSS code bridges the wired and wireless interfaces, translating between the wired device's MAC address and the WARP ndoe's wireless MAC address. This translation will not work if multiple Ethernet devices are connected to the IBSS node's ETH A interface via a switch.
     7
     8The IBSS uses ETH B for interaction with the [wiki:../../wlan_exp experiments framework].
     9
     10== User IO ==
     11
     12'''Hex Displays''': the STA uses the hex displays to show the node's current association ID (AID) as assigned by the AP during the association handshake. The displays will change in real time as the station joins and leaves networks. The displays will show 00 when the STA is not associated with an AP (0 is not a valid AID).
     13
     14'''DIP Switch''': the IBSS uses the left-most switch to enable or disable active scan and creation of a BSS on boot. When the left switch is up the IBSS will not search for or create a new BSS on boot. The node can still be added to a BSS via wlan_exp commands.
     15
     16== UART ==
     17
     18Refer to the [wiki:../UART UART usage] page for an overview of how the 802.11 design uses the UART cores on each CPU.
     19
     20The normal UART output on boot of the AP application is:
     21{{{
     22----- Mango 802.11 Reference Design -----
     23----- v1.0 ------------------------------
     24----- wlan_mac_ibss ----------------------
     25
     26< High Framework Boot Messages - See Above >
     27
     28WLAN MAC IBSS boot complete:
     29  MAC Addr     : 40-D8-55-04-21-4A
     30
     31
     32Press the Esc key in your terminal to access the UART menu
     33}}}
     34
     35After a short while the IBSS application will then print:
     36
     37{{{
     38Unable to find 'WARP-IBSS' IBSS. Creating new network.
     39Remove self from BSS
     40IBSS Details:
     41  BSSID           : 42-D8-55-04-21-4A
     42   SSID           : WARP-IBSS
     43   Channel        : 1
     44   Beacon Interval: 100 TU (102400 us)
     45}}}
     46
     47This is the normal behavior, indicating the IBSS did not find any existing IBSS network using the SSID "WARP-IBSS", so it creates one and starts sending beacons.
     48
     49The IBSS application implements a simple UART menu, accessed by hitting {{{ESC}}} key:
     50{{{
     51********************** Station Menu **********************
     52[1] - Interactive Station Status
     53[2] - Print all Observed Statistics
     54
     55[a] -   display BSS information
     56[r/R] - change unicast rate
     57
     58}}}
     59
     60Option {{{1}}} will show a sub-menu with a command to reset all Tx/Rx statistics.
     61
     62Option {{{2}}} will print the Tx/Rx statistics for all traffic at the IBSS node.
     63
     64Option {{{a}}} will print the list of wireless networks the IBSS has discovered during its active scan.