view src/cs/drivers/drv_app/fchg/fchg_common.h @ 205:81f5c4ca1fb3

mmiDialogs.c: make dialog_info() static The function in question was first declared as static, then defined as non-static, which should be considered invalid C. Given that this function is not referenced from any other modules and appears to have been intended as static, make it so.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Apr 2021 01:28:52 +0000
parents 75067af48bfd
children
line wrap: on
line source

/*
 * The definitions in this header file are used both in the external API
 * and in the internal structures.
 */

#ifndef __FCHG_COMMON_H
#define __FCHG_COMMON_H

enum fchg_state {
	FCHG_STATE_NO_EXT_PWR = 0,
	FCHG_STATE_PWR_PLUG_TIMER,
	FCHG_STATE_READY_TO_CHARGE,
	FCHG_STATE_READY_TO_RECHARGE,
	FCHG_STATE_I2V_CAL_1,
	FCHG_STATE_I2V_CAL_2,
	FCHG_STATE_CI_CHARGING,
	FCHG_STATE_CV_CHARGING,
	FCHG_STATE_RECHARGE_TIMER,
	FCHG_STATE_NO_CHARGING
};

/* from original PWR SWE */
typedef UINT8 T_PWR_PERCENT;

enum fchg_event {
	FCHG_EVENT_DISCHARGE,
	FCHG_EVENT_CHARGER_PLUG,
	FCHG_EVENT_CHARGER_UNPLUG,
	FCHG_EVENT_CHARGING_START,
	FCHG_EVENT_CHARGING_COMPLETE,
	FCHG_EVENT_CHARGING_STOPPED,
	FCHG_EVENT_CHARGING_TIMEOUT
};

typedef void (*T_FCHG_EVENT_HANDLER)(enum fchg_event);

#endif	/* include guard */