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 e1b678e commit b18634eCopy full SHA for b18634e
cores/arduino/WVariant.h
@@ -64,6 +64,12 @@ typedef enum _ETCChannel
64
TCC2_CH1 = (2<<8)|(1),
65
TC3_CH0 = (3<<8)|(0),
66
TC3_CH1 = (3<<8)|(1),
67
+ TC5_CH0 = (5<<8)|(0),
68
+ TC5_CH1 = (5<<8)|(1),
69
+#if defined __SAMD21J18A__
70
+ TC7_CH0 = (7<<8)|(0),
71
+ TC7_CH1 = (7<<8)|(1)
72
+#endif // __SAMD21J18A__
73
} ETCChannel ;
74
75
extern const void* g_apTCInstances[TCC_INST_NUM+TC_INST_NUM] ;
@@ -90,6 +96,12 @@ typedef enum _EPWMChannel
90
96
PWM2_CH1=TCC2_CH1,
91
97
PWM3_CH0=TC3_CH0,
92
98
PWM3_CH1=TC3_CH1,
99
+ PWM5_CH0=TC5_CH0,
100
+ PWM5_CH1=TC5_CH1,
101
102
+ PWM7_CH0=TC7_CH0,
103
+ PWM7_CH1=TC7_CH1
104
93
105
} EPWMChannel ;
94
106
95
107
typedef enum _EPortType
0 commit comments