FreeCalypso > hg > fc-magnetite
view src/cs/drivers/drv_app/fchg/fchg_default_batt.c @ 660:293c7db5f10f
bmi3: fixed the mysterious "mute on first call" bug
When UI-enabled fw boots on a previously blank (no /mmi/* files) FFS
for the first time, the output_volume member of the persistent UI settings
structure was left uninitialized, corresponding to the earpiece volume
being set to mute, which is an invalid setting. Because of other quirks
in the far-from-finished UI code, this volume setting takes effect only
when the first call is answered, producing the odd behaviour seen at the
user level.
The current fix is to set the blank-FFS default for output_volume to
volume level 4, which is the same -6 dB Iota volume as the ACI default.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 14 May 2020 02:50:41 +0000 |
| parents | 919b44c991fc |
| children |
line wrap: on
line source
/* * This module provides the default table of battery State-of-Charge * thresholds in the absence of a customized table in FFS. * * The present default table has been taken from Pirelli's firmware. */ #include "fchg/fchg_env.h" #include "fchg/fchg_func_i.h" #include "rv/rv_general.h" #include <string.h> static const T_PWR_THRESHOLDS default_batt_table[] = { {4170, 100}, {4120, 95}, {4070, 90}, {4030, 85}, {3964, 80}, {3930, 75}, {3900, 70}, {3882, 65}, {3847, 60}, {3805, 55}, {3786, 50}, {3771, 45}, {3759, 40}, {3750, 35}, {3745, 30}, {3737, 25}, {3719, 20}, {3688, 15}, {3663, 10}, {3539, 5}, {3370, 0} }; void pwr_set_default_batt_table(void) { memcpy(pwr_ctrl->batt_thresholds, default_batt_table, sizeof default_batt_table); pwr_ctrl->nb_thresholds = sizeof(default_batt_table) / sizeof(T_PWR_THRESHOLDS); }
