Per @hathach request

This commit is contained in:
Henry Gabryjelski 2020-08-03 17:04:46 -07:00
parent 12c4506437
commit 00dd2e0097
2 changed files with 4 additions and 2 deletions

View file

@ -250,8 +250,9 @@ void detachInterrupt(uint32_t pin)
* External Interrupt Controller NVIC Interrupt Handler * External Interrupt Controller NVIC Interrupt Handler
*/ */
#if defined(__SAMD51__) #if defined(__SAMD51__)
void InterruptHandler(__attribute__((unused)) uint32_t i) void InterruptHandler(uint32_t unused_i)
{ {
(void)unused_i;
// Calling the routine directly from -here- takes about 1us // Calling the routine directly from -here- takes about 1us
// Depending on where you are in the list it will take longer // Depending on where you are in the list it will take longer

View file

@ -172,8 +172,9 @@ static inline void resetTC (Tc* TCx)
while (TCx->COUNT16.CTRLA.bit.SWRST); while (TCx->COUNT16.CTRLA.bit.SWRST);
} }
static void _initISR(Tc *tc, uint8_t channel, __attribute__((unused)) uint32_t id, IRQn_Type irqn, uint8_t gcmForTimer, uint8_t intEnableBit) static void _initISR(Tc *tc, uint8_t channel, uint32_t id, IRQn_Type irqn, uint8_t gcmForTimer, uint8_t intEnableBit)
{ {
(void)id;
// Select GCLK0 as timer/counter input clock source // Select GCLK0 as timer/counter input clock source
#if defined(__SAMD51__) #if defined(__SAMD51__)
int idx = gcmForTimer; // see datasheet Table 14-9 int idx = gcmForTimer; // see datasheet Table 14-9