Changes between Version 7 and Version 8 of Tutorials/Wireless/Measurement Tool


Ignore:
Timestamp:
May 27, 2019, 9:14:35 PM (5 years ago)
Author:
nilanjan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/Measurement Tool

    v7 v8  
    376376    > CWriteOml oml;
    377377   
    378  4. Call the member function init() to initialize with an ID, database file name and storage location.
     378 4. Call the member function ''init()'' to initialize with an ID, database file name and storage location.
    379379    > CWriteOml::init(std::string oml_id, std::string oml_domain, std::string oml_collect);
    380380
     
    382382    > CWriteOml::register_mp(std::string str_variable, OmlValueT oml_value_type);
    383383
    384  6. Once the collection of measurement points are registered, call start() to kick off the recording session.
     384 6. Once the collection of measurement points are registered, call ''start()'' to kick off the recording session.
    385385    > CWriteOml::start()
    386386
     
    388388    > CWriteOml::set_mp(std::string key_str, void* val_ptr);
    389389    > CWriteOml::set_mp_blob(std::string key_str, void* val_ptr, unsigned int omlblob_bytes);
    390   Use set_mp() for int32, int64, uint32, uint64, double, string.[[BR]]
    391   Use set_mp_blob() for binary data.
    392 
    393  8. When ready to record the collection of measurement points call insert().
     390  Use ''set_mp()'' for int32, int64, uint32, uint64, double, string.[[BR]]
     391  Use ''set_mp_blob()'' for binary data.[[BR]]
     392  These are the most common types being used.
     393
     394 8. When ready to record the collection of measurement points call ''insert()''.
    394395    > CWriteOml::insert()
    395396
    396  9. The application is done with the recording session, use stop().
     397 9. The application is done with the recording session, use ''stop()''.
    397398    > CWriteOml::stop()
    398399
    399  10. Compile and link the application with -loml2 -locomm
    400 
     400 10. Compile and link the application with ''-loml2 -locomm''
     401