whycyhl
2022-05-05 94861120b14313f81fc666e612c48c9e8a81f1e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/************************** Copyright (c) **********************************
**                 FUZHOU FUGUANG ELECTRONICS Co.,LTD.
**                        ¸£Öݸ£¹âµç×ÓÓÐÏÞ¹«Ë¾
**                       http://www.fuguang.com
**
**-------------- File Info -------------------------------------------------
** File name:            SingleVol.h
** Last modified Date:  2008-11-16
** Last Version:        1.0
** Descriptions:        Display the monomer voltage data and graphy
**
**--------------------------------------------------------------------------
** Created by:            mxpopstar
** Created date:        2008-11-16
** Version:                1.0
** Descriptions:        The original version
**
**--------------------------------------------------------------------------
** Modified by:            mxpopstar
** Modified date:        2008-11-20
** Version:
** Descriptions:        Display the monomer voltage data and graphy
**
***************************************************************************/
//
#ifndef SingleVol_H
#define SingleVol_H
 
#define mode_data  0
#define mode_graph 1
 
#include "Define.h"
 
unsigned char DSPSingleVolData(void);
void DrawSingleVolPageButton(void);
void QuitSingleVolPage(void);
void UpdateSingleVolData(const unsigned int *voldata);
void GetSingleVolMenuSelected(void);
void UpdateMaxMinVol(void);
void SetMonomerSum(const unsigned int eachgroupbattsum, const unsigned char group);
void DrawRects(void);
void UpdateSVGraph(const unsigned int *voldata);
void ClearOringinMonomerVol(void);
void SetMonomerVolType(void);
void SetOringinMonomerVol(const unsigned int *voldata);
 
#endif
//