FreeCalypso > hg > fc-selenite
view scripts/make-rv-swe-hdr.sh @ 212:7f3266e247d6
audio mode load: gracefully handle mode files of wrong AEC version
Irrespective of which AEC policy we adopt for FC Selenite (keep
L1_NEW_AEC disabled like in Magnetite or enable it like in Tourmaline),
we MUST gracefully handle the case of wrong AEC version on audio mode
load: disable AEC instead of loading garbage. Therefore, we apply
the same change to src/cs/services/audio/audio_mode_load.c as we made
in Tourmaline and Magnetite last year.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 31 Oct 2022 00:31:30 +0000 |
parents | f10cbd8a51c4 |
children |
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' echo echo '#endif /* __RV_SWE_H__ */'