1Common Scripts to Generate Byte Control Files 2======================================= 3 4The tools need GNU Octave version 4.0.0 or later with octave-signal 5package. 6 7alsactl_write(fn, blob8) 8--------------- 9 10Converts blob8 to a CSV text file. 11The output can be used to configure an audio component using sof-ctl. 12Example: 13``` 14sof-ctl -n 22 -s output.csv # Apply config to control numid=22 15``` 16 17blob_write(fn, blob8) 18--------------- 19 20Converts blob8 to a binary file. 21The output can be used to configure an audio component using sof-ctl. 22Example: 23``` 24sof-ctl -n 22 -b set output.bin # Apply config to control numid=22 25``` 26 27tplg_write(fn, blob8, name, comment) 28--------------- 29 30Converts blob8 to a topology config file. The control bytes generated will 31be called {name}_priv. 32