File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ constexpr int32_t DELTAIRQCCYS = clockCyclesPerMicrosecond() == 160 ?
55
55
microsecondsToClockCycles (3 ) >> 1 : microsecondsToClockCycles(3 );
56
56
// The latency between in-ISR rearming of the timer and the earliest firing
57
57
constexpr int32_t IRQLATENCYCCYS = clockCyclesPerMicrosecond() == 160 ?
58
- ( microsecondsToClockCycles(3 ) / 2 ) >> 1 : microsecondsToClockCycles(3 ) / 2 ;
58
+ microsecondsToClockCycles (1 ) >> 1 : microsecondsToClockCycles(1 ) ;
59
59
60
60
// Set/clear GPIO 0-15 by bitmask
61
61
#define SetGPIO (a ) do { GPOS = a; } while (0 )
@@ -453,5 +453,4 @@ static ICACHE_RAM_ATTR void timer1Interrupt() {
453
453
// 80MHz binaries in 160MHz boost (SDK) need NMI scaling
454
454
// to maintain duty/idle ratio.
455
455
T1L = CPU2X & 1 ? nextTimerCcys >> 1 : nextTimerCcys;
456
- TEIE |= TEIE1; // Edge int enable
457
456
}
You can’t perform that action at this time.
0 commit comments