# author lwei@intec.ugent.be
# The tcpdump application definition, without measurement point
defApplication('imecse_app_wrap', 'imecse_app_wrap') do |app|
   app.path = '/proj/cognitiveradio/sensing/imecse/oedl_example/oml_app/imecse_app_wrap.rb'

# some descriptions
   app.version(1, 0, 0)
   app.shortDescription = "imecse app wrap"
   app.description = "example application definition that uses imec sensing to scan the 14 Wi-Fi channel in the 2.4 GHz "

# property without a value (e.g. ping -R 127.0.0.1)
   app.defProperty('frontend',"radio frontend",'-f',{:dynamic => false, :type => :string})
   app.defProperty('spiderid',"spider id",'-s',{:dynamic => false, :type => :string})
# the measurement definition 
   app.defMeasurement('imecsemp') do |mp|
      mp.defMetric('channel',:int32)
      mp.defMetric('rssi',:int32)
   end

end
