Changes between Version 13 and Version 14 of 802.11/wlan_exp/log/entry_types


Ignore:
Timestamp:
Apr 16, 2014, 10:43:48 PM (10 years ago)
Author:
murphpo
Comment:

--

Legend:

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

    v13 v14  
    6161Defining a new log entry type in Python requires two steps:
    6262 1. Create an instance of the {{{WlanExpLogEntryType}}} with a unique ID and name:
    63 {{{import wlan_exp.log.entry_types as entry_types
     63{{{#!python
     64import wlan_exp.log.entry_types as entry_types
    6465my_new_entry_type = entry_types.WlanExpLogEntryType(name='MY_NEW_ENTRY', entry_type_id=1001)
    6566}}}