8 lines
802 B
Plaintext
8 lines
802 B
Plaintext
---- CHIP_STA0 Matches (6 in 5 files) ----
|
||
DisCharge_Handler in discharge_module.c (UsrSrc\discharge) : if( (CHIP_STA0 & 0x80) ) //用于清软件标志位。
|
||
Hall_Handler in hall.c (UsrSrc\hall) : Hall_Sta = CHIP_STA0 & HALL_STAT;
|
||
Hall_Handler in hall.c (UsrSrc\hall) : if( CHIP_STA0 & HALL_STAT ) //Hall 高电平
|
||
Key_Handler in key.c (UsrSrc\key) : if( !(CHIP_STA0 & KEY_STAT) ) //CHIP_STA0 的bit1为Key的状态值:0:按下;
|
||
reg883x.h (UsrInc\inc) line 159 : sfr CHIP_STA0 = 0xE2;
|
||
SysTem_State_Machine in userapp.c (UsrSrc\userapp) : printf("STA0:0x%x,STA1:0x%x,STA2:0x%x,STA3:0x%x,STA4:0x%x.Dec_Sleep:%d\r\n",(uint16_t)(CHIP_STA0),(uint16_t)(CHIP_STA1),(uint16_t)(CHIP_STA2),(uint16_t)(CHIP_STA3),(uint16_t)(CHIP_STA4),(uint16_t)Decnt_SleepDelay);
|