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 2138b04 commit b923324Copy full SHA for b923324
ports/atmel-samd/boards/mini_sam_m0/mpconfigboard.h
@@ -1,9 +1,12 @@
1
-// LEDs
2
-//#define MICROPY_HW_LED_MSC PIN_PA15 // red
3
-
+// Board Name / MCU Type
4
#define MICROPY_HW_BOARD_NAME "Mini Sam M0"
5
#define MICROPY_HW_MCU_NAME "samd21e18"
6
+// LED
+#define MICROPY_HW_NEOPIXEL (&pin_PA27)
7
+//#define MICROPY_HW_LED_MSC PIN_PA15 // red
8
+
9
+// Do not reset these pins.
10
#define MICROPY_PORT_A (PORT_PA24 | PORT_PA25)
11
#define MICROPY_PORT_B (0)
12
#define MICROPY_PORT_C (0)
@@ -14,6 +17,8 @@
14
17
15
18
#define BOARD_FLASH_SIZE (0x00040000 - 0x2000 - 0x010000)
16
19
20
+#define BOARD_HAS_CRYSTAL 1
21
22
#define DEFAULT_I2C_BUS_SCL (&pin_PA23)
23
#define DEFAULT_I2C_BUS_SDA (&pin_PA22)
24
0 commit comments