FreeCalypso > hg > fc-tourmaline
view scripts/make-rv-swe-hdr.sh @ 214:adfdbcd360fd
backlight evolution: API between Condat driver and MFW
With this change, the API between the Condat backlight driver
and its user in MFW now carries more abstract backlight state codes
(fully off, fully on, in call, charging boot mode) instead of
0-255 levels. This change is needed in order to more properly support
different hardware targets with different capabilities and approaches
in terms of backlight handling.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 23 Apr 2021 23:52:02 +0000 |
parents | 12ed2291fb67 |
children | ee04ca45053d |
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__ */'