source: ReferenceDesigns/w3_802.11/python/wlan_exp/log/gen_entry_type_wiki_docs.py

Last change on this file was 6320, checked in by chunter, 5 years ago

1.8.0 release wlan-exp

File size: 426 bytes
Line 
1"""
2Create wiki documentation from entry types
3"""
4
5if __name__ == '__main__':
6    import wlan_exp.version as version
7    from wlan_exp.log.entry_types import log_entry_types as log_entry_types
8   
9   
10    print("== {0} Log Entry Types ==".format(version.version))
11   
12    for tid in log_entry_types.keys():
13        if(type(tid) is int and tid != 0):
14            print(log_entry_types[tid].generate_entry_doc(fmt='wiki'))
15
Note: See TracBrowser for help on using the repository browser.