mirror of https://github.com/thesofproject/sof.git
1203a46633
getopt() returns an int, which in our implementation is assigned to a char type var. On some platforms char is unsigned thus making getopt() return value always > 0. Use int instead of char here to fix the stop condition for parameter parsing. This makes sof-ctl work on ARM platforms. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
README | ||
ctl.c | ||
eq_fir_flat.txt | ||
eq_fir_loudness.txt | ||
eq_fir_mid.txt | ||
eq_fir_pass.txt | ||
eq_iir_bandpass.txt | ||
eq_iir_bassboost.txt | ||
eq_iir_bundle.txt | ||
eq_iir_flat.txt | ||
eq_iir_highpass_20hz_0db_48khz.txt | ||
eq_iir_highpass_30hz_0db_48khz.txt | ||
eq_iir_highpass_40hz_0db_48khz.txt | ||
eq_iir_highpass_50hz_0db_48khz.txt | ||
eq_iir_loudness.txt | ||
eq_iir_pass.txt |
README
How to use sof-ctl tool ========================= This tool helps to access the ext bytes or tlv bytes control of SOF components (like equalizer eq_iir and eq_fir). Please find the documentation in https://thesofproject.github.io/latest/getting_started/index.html for more information.