

20201204
1. modified
#define	 CLEAR_ALL_IRQ_SOURCE		0x3F
#define	 ALL_IRQ_SOURCE			0x3F

to

#define	 CLEAR_ALL_IRQ_SOURCE		0x7F
#define	 ALL_IRQ_SOURCE			0x7F

2. add
void BC45_RSTPD_SET(void);
void BC45_RSTPD_CLR(void);
to BC45_Chip_Function.h

3. modified
htk_SPI_writeSingleRegister(0x05, 0x06);
to 
htk_SPI_writeSingleRegister(0x05, 0x05);
in BC45_Chip_Function.c
change fullscal value

4. add
	BC45_RSTPD_SET();
	Delay_us(2000);
	BC45_RSTPD_CLR();
	Delay_us(2400);					//Hard PD mode wakeup time
in Initial_BC45_Board ( BC45_Board_ASIC_Category.c )



