diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-21 20:14:27 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-21 20:14:27 +0100 |
commit | aa7cf6f72f4e8a553f892629bb3338ab8c982d57 (patch) | |
tree | b16167eecc2c5e8e5f84bd710308366a166c55e8 /stm/boards/PYBOARD3/mpconfigboard.h | |
parent | 63436ce22ee20f56b0083f846261c0b77af9961b (diff) | |
download | micropython-aa7cf6f72f4e8a553f892629bb3338ab8c982d57.tar.gz micropython-aa7cf6f72f4e8a553f892629bb3338ab8c982d57.zip |
stm: Remove long-obsolete stm/ port.
Diffstat (limited to 'stm/boards/PYBOARD3/mpconfigboard.h')
-rw-r--r-- | stm/boards/PYBOARD3/mpconfigboard.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/stm/boards/PYBOARD3/mpconfigboard.h b/stm/boards/PYBOARD3/mpconfigboard.h deleted file mode 100644 index 29e23eaab6..0000000000 --- a/stm/boards/PYBOARD3/mpconfigboard.h +++ /dev/null @@ -1,32 +0,0 @@ -#define PYBOARD3 - -#define MICROPY_HW_BOARD_NAME "PYBv3" - -#define MICROPY_HW_HAS_SWITCH (1) -#define MICROPY_HW_HAS_SDCARD (1) -#define MICROPY_HW_HAS_MMA7660 (1) -#define MICROPY_HW_HAS_LIS3DSH (0) -#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 (1) -#define MICROPY_HW_ENABLE_AUDIO (0) - -// USRSW has no pullup or pulldown, and pressing the switch makes the input go low -#define USRSW_PIN (pin_A13) -#define USRSW_PUPD (GPIO_PuPd_UP) -#define USRSW_EXTI_EDGE (EXTI_Trigger_Falling) -#define USRSW_PRESSED (0) - -/* LED */ -#define PYB_LED1 (pin_A8) // R1 - red -#define PYB_LED2 (pin_A10) // R2 - red -#define PYB_LED3 (pin_C4) // G1 - green -#define PYB_LED4 (pin_C5) // G2 - green - -#define PYB_OTYPE (GPIO_OType_PP) - -#define PYB_LED_ON(pin) (pin->gpio->BSRRH = pin->pin_mask) -#define PYB_LED_OFF(pin) (pin->gpio->BSRRL = pin->pin_mask) |