summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/boards/STM32F4DISC/mpconfigboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'stmhal/boards/STM32F4DISC/mpconfigboard.h')
-rw-r--r--stmhal/boards/STM32F4DISC/mpconfigboard.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/stmhal/boards/STM32F4DISC/mpconfigboard.h b/stmhal/boards/STM32F4DISC/mpconfigboard.h
new file mode 100644
index 0000000000..b463c90ad3
--- /dev/null
+++ b/stmhal/boards/STM32F4DISC/mpconfigboard.h
@@ -0,0 +1,33 @@
+#define STM32F4DISC
+
+#define MICROPY_HW_BOARD_NAME "F4DISC"
+
+#define MICROPY_HW_HAS_SWITCH (1)
+#define MICROPY_HW_HAS_SDCARD (0)
+#define MICROPY_HW_HAS_MMA7660 (0)
+#define MICROPY_HW_HAS_LIS3DSH (1)
+#define MICROPY_HW_HAS_LCD (0)
+#define MICROPY_HW_HAS_WLAN (0)
+#define MICROPY_HW_ENABLE_RNG (1)
+#define MICROPY_HW_ENABLE_RTC (1)
+#define MICROPY_HW_ENABLE_TIMER (1)
+#define MICROPY_HW_ENABLE_SERVO (0)
+#define MICROPY_HW_ENABLE_AUDIO (0)
+
+// USRSW is pulled low. Pressing the button makes the input go high.
+#define USRSW_PIN (pin_A0)
+#define USRSW_PUPD (GPIO_PuPd_NOPULL)
+#define USRSW_EXTI_EDGE (EXTI_Trigger_Rising)
+#define USRSW_PRESSED (1)
+
+/* LED */
+#define PYB_LED1 (pin_D14) // red
+#define PYB_LED2 (pin_D12) // green
+#define PYB_LED3 (pin_D13) // orange
+#define PYB_LED4 (pin_D15) // blue
+
+#define PYB_OTYPE (GPIO_OType_PP)
+
+#define PYB_LED_ON(pin) (pin->gpio->BSRRL = pin->pin_mask)
+#define PYB_LED_OFF(pin) (pin->gpio->BSRRH = pin->pin_mask)
+