8000 atmel-samd: Fix two more SERCOM configs, PA07 and PA06. · pcurry/circuitpython@d29915c · GitHub
[go: up one dir, main page]

Skip to content

Commit d29915c

Browse files
committed
atmel-samd: Fix two more SERCOM configs, PA07 and PA06.
1 parent 76a2178 commit d29915c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

atmel-samd/samd21_pins.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,15 @@ PIN(PA05, ADC_INPUT(ADC_POSITIVE_INPUT_PIN5), TOUCH(3),
157157
PIN(PA06, ADC_INPUT(ADC_POSITIVE_INPUT_PIN6), TOUCH(4),
158158
TCC(TCC1, 0, 0),
159159
NO_TIMER,
160-
SERCOM(SERCOM0, 2),
161-
NO_SERCOM);
160+
NO_SERCOM,
161+
SERCOM(SERCOM0, 2));
162162
#endif
163163
#ifdef PIN_PA07
164164
PIN(PA07, ADC_INPUT(ADC_POSITIVE_INPUT_PIN7), TOUCH(5),
165165
TCC(TCC1, 1, 1),
166166
NO_TIMER,
167-
SERCOM(SERCOM0, 3),
168-
NO_SERCOM);
167+
NO_SERCOM,
168+
SERCOM(SERCOM0, 3));
169169
#endif
170170
#ifdef PIN_PA08
171171
PIN(PA08, ADC_INPUT(ADC_POSITIVE_INPUT_PIN16), NO_TOUCH,

0 commit comments

Comments
 (0)
0