remove dead code, format code

This commit is contained in:
nino-porcino 2022-02-28 14:29:13 +01:00
parent b9c5586b20
commit 2ef08c2fba

View File

@ -73,21 +73,6 @@ __address(18) byte *token_ptr;
#define MCU_STROBE_HIGH 128
#define MCU_STROBE_LOW 0
/*
void wait_mcu_strobe(byte v) {
if(TIMEOUT) return;
TIMEOUT_CNT = 0;
while((v==0 && MCU_STROBE != 0) || (v!=0 && MCU_STROBE == 0)) {
TIMEOUT_CNT++;
if(TIMEOUT_CNT > TIMEOUT_MAX) {
TIMEOUT = 1;
break;
}
}
}
*/
void wait_mcu_strobe(byte v) {
if(TIMEOUT) return;