File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ typedef enum _ETCChannel
136
136
TC7_CH1 = (12 <<8 )|(1 ),
137
137
} ETCChannel ;
138
138
139
- #elif defined(__SAMD51P19A__ ) || defined(__SAMD51P20A__ )
139
+ #elif defined(__SAME53N20A__ ) || defined(__SAME53N19A__ ) || defined( __SAME54P20A__ ) || defined( __SAME54P19A__ ) || defined( __SAME54N20A__ ) || defined( __SAME54N19A__ ) || defined( __SAMD51P20A__ ) || defined( __SAMD51P19A__ ) || defined( __SAMD51N20A__ ) || defined( __SAMD51N19A__ ) || defined( __SAME51N20A__ ) || defined( __SAME51N19A__ )
140
140
141
141
typedef enum _ETCChannel
142
142
{
Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ void USB_0_Handler ( void ) __attribute__ ((weak));
133
133
void USB_1_Handler ( void ) __attribute__ ((weak ));
134
134
void USB_2_Handler ( void ) __attribute__ ((weak ));
135
135
void USB_3_Handler ( void ) __attribute__ ((weak ));
136
+ void GMAC_Handler ( void ) __attribute__ ((weak , alias ("Dummy_Handler" )));
136
137
void TCC0_0_Handler ( void ) __attribute__ ((weak , alias ("Dummy_Handler" )));
137
138
void TCC0_1_Handler ( void ) __attribute__ ((weak , alias ("Dummy_Handler" )));
138
139
void TCC0_2_Handler ( void ) __attribute__ ((weak , alias ("Dummy_Handler" )));
@@ -302,7 +303,7 @@ __attribute__ ((section(".isr_vector"))) const DeviceVectors exception_table =
302
303
(void * ) USB_1_Handler , /* 81 Universal Serial Bus IRQ 1 */
303
304
(void * ) USB_2_Handler , /* 82 Universal Serial Bus IRQ 2 */
304
305
(void * ) USB_3_Handler , /* 83 Universal Serial Bus IRQ 3 */
305
- (void * ) ( 0UL ),
306
+ (void * ) GMAC_Handler , /* 84 Ethernet MAC */
306
307
(void * ) TCC0_0_Handler , /* 85 Timer Counter Control 0 IRQ 0 */
307
308
(void * ) TCC0_1_Handler , /* 86 Timer Counter Control 0 IRQ 1 */
308
309
(void * ) TCC0_2_Handler , /* 87 Timer Counter Control 0 IRQ 2 */
You can’t perform that action at this time.
0 commit comments