mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
The definition uses the internal oscillator for clock and only internal flash for the file system. It works at SAMD51J20 device as well, only that fewer pins are accessible. Tested with a SAMD51J20 board. Signed-off-by: robert-hh <robert@hammelrath.com>
341 B
341 B
| 1 | # The lines contain pairs of Pin name and Pin number. |
|---|---|
| 2 | # Pin names must be valid Python identifiers. |
| 3 | # Pin numbers have the form Pxnn, with x being A, B, C or D. |
| 4 | # Lines starting with # or empty lines are ignored. |
| 5 | USB_DM,PA24 |
| 6 | USB_DP,PA25 |
| 7 | QSPI_CS,PB11 |
| 8 | QSPI_SCK,PB10 |
| 9 | QSPI_D0,PA08 |
| 10 | QSPI_D1,PA09 |
| 11 | QSPI_D2,PA10 |
| 12 | QSPI_D3,PA11 |
| 13 | SWCLK,PA30 |
| 14 | SWDIO,PA31 |