ctr_mcu/branches/sim/batt_params.h
n2232 ee844b9044 2.02
・pwsw_hold割り込みを入れるまでの時間が現行よりも遅くなっているのを修正。実測すると現行が正しい。プリスケーラ(task_interbal)のリファクタリング時に帳尻合わせ忘れてた
・試遊台で自動電源onが機能しなくなっていた。起動理由フラグの管理を間違えていた。
adc.c getmean3() 使っていないので削除、それに伴い不要になった変数も削除
batt_params.c バッテリパラメータを別ファイルに
pm.c コメント間違い修正


git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@362 013db118-44a6-b54f-8bf7-843cb86687b1
2011-08-03 23:54:29 +00:00

50 lines
741 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef _bt_params_h_
#define _bt_params_h_
#include "jhl_defs.h"
/*
“drޝ•Ê CTR | SPFL | YBS
0 ID = 0 maxell <20>©
120 1
360 2
750 <20>@ 3
1.3k<EFBFBD>@ 4
2.7k 5 pana <20>©
8.2k<EFBFBD>@ 6
*/
typedef enum
{
BT_PARAM_CTR_MAXELL = 0,
BT_PARAM_CTR_PANA,
BT_PARAM_SPFL_MAXELL,
BT_PARAM_SPFL_PANA,
BT_PARAM_SHRIMP_MAXELL,
BT_PARAM_SHRIMP_PANA,
_BT_PARAM_NUM_
} BT_TYPE;
typedef struct
{
u8 rcomp;
s16 up,down;
} rcomp_;
typedef struct
{
u8 hi,low;
} verify_;
typedef struct
{
u8 mg_param[64];
u8 v_scale;
rcomp_ rcomp;
u16 ocv;
verify_ verify;
} bt_param_;
#endif