FreeCalypso > hg > fc-tourmaline
view src/cs/drivers/drv_app/fchg/fchg_func_i.h @ 283:d9e3f3e293ac
etm_audio.c: fix off-by-one error in auw of FIR coefficients
The implementation of auw operation for UL or DL FIR upload
had this bug: the number of 16-bit shortwords copied into the
RVF-allocated temporary buffer was one too many, causing memory
corruption errors. The present change fixes this bug.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 08 Nov 2021 02:54:04 +0000 |
parents | 7420959e02ec |
children |
line wrap: on
line source
/* * Declarations of internal functions live here. */ #ifndef __FCHG_FUNC_I #define __FCHG_FUNC_I #include "fchg/fchg_messages.h" void pwr_init_discharge(void); void pwr_load_ffs_batt_table(void); void pwr_load_ffs_charging_config(void); void pwr_check_ffs_bsim(void); void pwr_set_default_batt_table(void); void pwr_process_message(T_RV_HDR *msg_ptr); void pwr_process_adc(struct pwr_adc_ind_s *msg); void pwr_handle_timer(void); void pwr_charger_plug_unplug_ind(void); void pwr_charge_start_req(void); void pwr_charge_stop_req(void); #endif /* include guard */