Changes between Version 6 and Version 7 of 802.11/wlan_exp/examples/log_capture_continuous


Ignore:
Timestamp:
Oct 24, 2014, 2:26:22 PM (10 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/wlan_exp/examples/log_capture_continuous

    v6 v7  
    55[[TracNav(802.11/TOC)]]
    66
    7 = 802.11 Reference Design Experiments Framework: Interactive Log Capture Example =
     7= 802.11 Reference Design Experiments Framework: Continuous Log Capture Example =
    88
    9 This example of the Experiments Framework provides an interactive script for initializing one WARP v3 node, waiting, then retrieving the node's log and writing it to an HDF5 log file.
     9This example of the Experiments Framework provides an interactive script for initializing one WARP v3 node then continuously retrieves the node's latest log data, eventually writing the data to an HDF5 file.
    1010
    1111This script is ideal for capturing a log file with Tx and Rx events recorded from Wi-Fi clients using the 802.11 Reference Design AP or STA.
     
    1717 * Open a command prompt
    1818 * CD to the '''Python_Reference/examples/txrx_log''' directory from the expanded 802.11 Reference design archive
    19  * Run {{{python log_capture_interactive.py}}}
     19 * Run {{{python log_capture_continuous.py}}}
    2020 * After running this script you can analyze the log file using the wlan_exp log tools. Refer to the [wiki:../txrx_log_analysis txrx_log analysis examples] to get started processing your log file.
    2121
     
    5656
    5757
    58 Writing         768,300 bytes of data to log file interactive_capture.hdf5...
     58Writing         768,300 bytes of data to log file log_continuous_capture.hdf5...
    5959Final log size:       49,615,588 bytes
    6060Done.
     
    6464}}}
    6565
    66 NOTE:  By default, the script will try to use the file name:  {{{interactive_capture.hdf5}}}.  You are free to override this behavior on the command line:  {{{python log_capture_interactive.py <my_file_name>}}}.  This script will write the log file to your current directory.
     66NOTE:  By default, the script will try to use the file name:  {{{log_continuous_capture.hdf5}}}.  You are free to override this behavior on the command line:  {{{python log_capture_interactive.py <my_file_name>}}}.  This script will write the log file to your current directory.
    6767
    6868----
    69 '''Source:''' the script is included in the 802.11 Reference Design archive at '''Python_Reference/examples/txrx_log/log_capture_interactive.py'''.
     69'''Source:''' the script is included in the 802.11 Reference Design archive at '''Python_Reference/examples/txrx_log/log_capture_continuous.py'''.