Only panic once
This commit is contained in:
parent
b64b48d777
commit
8d0de435dc
|
@ -96,7 +96,9 @@ MPKT * meshGetMessage(uint8_t type){
|
|||
};
|
||||
|
||||
void meshPanic(uint8_t * pkt,int bufno){
|
||||
static int done=0;
|
||||
#if 1
|
||||
if(!done){
|
||||
setSystemFont();
|
||||
lcdClear();
|
||||
lcdPrint("PANIC[");
|
||||
|
@ -110,6 +112,8 @@ void meshPanic(uint8_t * pkt,int bufno){
|
|||
}
|
||||
lcdRefresh();
|
||||
while ((getInputRaw())==BTN_NONE);
|
||||
};
|
||||
done=1;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue