Changes between Version 7 and Version 8 of Tutorials/Wireless/Measurement Tool
- Timestamp:
- May 27, 2019, 9:14:35 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Wireless/Measurement Tool
v7 v8 376 376 > CWriteOml oml; 377 377 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. 379 379 > CWriteOml::init(std::string oml_id, std::string oml_domain, std::string oml_collect); 380 380 … … 382 382 > CWriteOml::register_mp(std::string str_variable, OmlValueT oml_value_type); 383 383 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. 385 385 > CWriteOml::start() 386 386 … … 388 388 > CWriteOml::set_mp(std::string key_str, void* val_ptr); 389 389 > 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()''. 394 395 > CWriteOml::insert() 395 396 396 9. The application is done with the recording session, use stop().397 9. The application is done with the recording session, use ''stop()''. 397 398 > CWriteOml::stop() 398 399 399 10. Compile and link the application with -loml2 -locomm400 400 10. Compile and link the application with ''-loml2 -locomm'' 401