Changes between Version 9 and Version 10 of 802.11/wlan_exp/log/entry_types


Ignore:
Timestamp:
Apr 16, 2014, 9:08:17 PM (10 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/wlan_exp/log/entry_types

    v9 v10  
    1414
    1515== Reference Design Entry Types ==
     16The sections below document the log entry types defined in the latest 802.11 Reference Design C and Python code.
     17
     18This listing is generated directly from the [source:/ReferenceDesigns/w3_802.11/python/wlan_exp/log/entry_types.py entry_types.py] file in the wlan_exp Python package. You can generate a text version of the entry type list with this code:
     19{{{#!python
     20from wlan_exp.log.entry_types import log_entry_types as log_entry_types
     21
     22for tid in log_entry_types.keys():
     23    if(type(tid) is int and tid != 0): #only take int type IDs and skip NULL
     24        print(log_entry_types[tid].generate_entry_doc(fmt='txt'))
     25}}}
     26
     27
    1628{{{#!comment
    17 from wlan_exp.log.entry_types import log_entry_types as log_entry_types
    18 
    19 for lid in log_entry_types.keys():
    20     if(type(lid) is int and lid != 0):
    21         print(log_entry_types[lid].generate_entry_wiki_doc())
     29#Run:
     30for tid in log_entry_types.keys():
     31    if(type(tid) is int and tid != 0): #only take int type IDs and skip NULL
     32        print(log_entry_types[tid].generate_entry_doc(fmt='wiki'))
    2233
    2334##############################
    2435# Copy and Paste Python Output Below
    2536}}}
     37
     38
    2639=== Entry Type NODE_INFO ===
    2740Details about the node hardware and its configuration. Node info values are static after boot.
     
    258271----
    259272
    260