==

omf exec test:exp:tutorial:spectrum-demo.rb -- --group white

./rx_multi_receive --args="addr0=192.168.10.2" --nsamps 1024000 --freq
2440e6 --rate 20e6 --gain 3 --dilv --oml-id `hostname` --oml-collect
"oml:3003" --oml-domain rx_multi_samples



> ./db_parse --file /var/lib/oml2/white.sq3 --showtables
> ./db_parse --file /var/lib/oml2/white.sq3 --blob2bin
> binary_ch1.dat --ch 1 --table _mp__rx_multi_samples --key Bins


octave> 
mag0 = fReadBinaryFile('ch0_data.bin','single');
mag0 = reshape(mag0, 1024, length(mag0)/1024);
image(mag0*1000)

mag1 = fReadBinaryFile('ch1_data.bin','single');
mag1 = reshape(mag1, 1024, length(mag1)/1024);
image(mag1*1000)


==
