We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf7d47 commit c6262ccCopy full SHA for c6262cc
src/peripherals/timer.ts
@@ -18,12 +18,10 @@ const INTE = 0x38;
18
const INTF = 0x3c;
19
const INTS = 0x40;
20
21
-/* eslint-disable @typescript-eslint/no-unused-vars */
22
const ALARM_0 = 1 << 0;
23
const ALARM_1 = 1 << 1;
24
const ALARM_2 = 1 << 2;
25
const ALARM_3 = 1 << 3;
26
-/* eslint-enable @typescript-eslint/no-unused-vars */
27
28
const timerInterrupts = [IRQ.TIMER_0, IRQ.TIMER_1, IRQ.TIMER_2, IRQ.TIMER_3];
29
0 commit comments