|
@@ -23,7 +23,9 @@
|
23
|
23
|
// --------------------------------------------------------------------------
|
24
|
24
|
// Includes
|
25
|
25
|
// --------------------------------------------------------------------------
|
|
26
|
+
|
26
|
27
|
#include "../../inc/MarlinConfig.h"
|
|
28
|
+#include "ServoTimers.h" // for SERVO_TC
|
27
|
29
|
|
28
|
30
|
// --------------------------------------------------------------------------
|
29
|
31
|
// Local defines
|
|
@@ -39,7 +41,7 @@ const tTimerConfig TimerConfig[NUM_HARDWARE_TIMERS+1] = {
|
39
|
41
|
{ {.pTc=TC0}, TC0_IRQn, TC_PRIORITY(0) }, // 0 - stepper (assigned priority 2)
|
40
|
42
|
{ {.pTc=TC1}, TC1_IRQn, TC_PRIORITY(1) }, // 1 - stepper (needed by 32 bit timers)
|
41
|
43
|
{ {.pTc=TC2}, TC2_IRQn, 5 }, // 2 - tone (reserved by framework and fixed assigned priority 5)
|
42
|
|
- { {.pTc=TC3}, TC3_IRQn, TC_PRIORITY(3) }, // 3 - servo (no interrupts used)
|
|
44
|
+ { {.pTc=TC3}, TC3_IRQn, TC_PRIORITY(3) }, // 3 - servo (assigned priority 1)
|
43
|
45
|
{ {.pTc=TC4}, TC4_IRQn, TC_PRIORITY(4) }, // 4 - software serial (no interrupts used)
|
44
|
46
|
{ {.pTc=TC5}, TC5_IRQn, TC_PRIORITY(5) },
|
45
|
47
|
{ {.pTc=TC6}, TC6_IRQn, TC_PRIORITY(6) },
|