view scripts/make-rv-swe-hdr.sh @ 274:fa22012c4a39

CST: remove AT%Nxxxx old AEC control This crude method of enabling and configuring AEC is not compatible with L1_NEW_AEC, and even for the old AEC it did not support every possible combination. It is time for this hack to go. The new and proper way of enabling and configuring AEC is via RiViera Audio Service audio mode facility, either audio mode files or full access write, most directly accessible via fc-tmsh auw 12 for free experimentation.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 29 Jul 2021 18:57:36 +0000
parents ee04ca45053d
children e17bdedfbf2b
line wrap: on
line source

#!/bin/sh

echo '#ifndef __RV_SWE_H__'
echo '#define __RV_SWE_H__'
echo

if [ "$ATP_STATE" = 1 ]
then
	echo '#define RVM_ATP_SWE'
fi

echo '#define RVM_AUDIO_SWE'
echo '#define RVM_ETM_SWE'
echo '#define RVM_DAR_SWE'
echo '#define RVM_SPI_SWE'
echo '#define RVM_LLS_SWE'
echo '#define RVM_KPD_SWE'

if [ "$FCHG_STATE" = 1 ]
then
	echo '#define RVM_FCHG_SWE'
fi

if [ "$LCC_STATE" = 1 ]
then
	echo '#define RVM_LCC_SWE'
fi

if [ "$PWR_STATE" = 1 ]
then
	echo '#define RVM_PWR_SWE'
fi

if [ "$R2D_STATE" = 1 ]
then
	echo '#define RVM_R2D_SWE'
fi

if [ "$MKS_STATE" = 1 ]
then
	echo '#define RVM_MKS_SWE'
fi

echo '#define RVM_RTC_SWE'
echo '#define RVM_FFS_SWE'

if [ "$FCBM_STATE" = 1 ]
then
	echo '#define RVM_FCBM_SWE'
fi

echo
echo '#endif /* __RV_SWE_H__ */'