Skip to content
Snippets Groups Projects
Select Git revision
  • 181bfb6db2a089442e5b3d38d68b1236b8aa0eb0
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

mpconfigboard.h

Blame
  • user avatar
    Damien George authored
    Since all currently supported boards use pin A9 for this function, the
    value of the macro MICROPY_HW_USB_VBUS_DETECT_PIN is not actually used,
    just the fact that it is defined.
    
    Addresses issue #1048.
    181bfb6d
    History
    mpconfigboard.h 1.40 KiB
    #define STM32F4DISC
    
    #define MICROPY_HW_BOARD_NAME       "F4DISC"
    #define MICROPY_HW_MCU_NAME         "STM32F407"
    
    #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_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_DAC       (1)
    #define MICROPY_HW_ENABLE_I2C1      (1)
    #define MICROPY_HW_ENABLE_SPI1      (1)
    #define MICROPY_HW_ENABLE_SPI3      (0)
    #define MICROPY_HW_ENABLE_CAN       (1)
    
    // USRSW is pulled low. Pressing the button makes the input go high.
    #define MICROPY_HW_USRSW_PIN        (pin_A0)
    #define MICROPY_HW_USRSW_PULL       (GPIO_NOPULL)
    #define MICROPY_HW_USRSW_EXTI_MODE  (GPIO_MODE_IT_RISING)
    #define MICROPY_HW_USRSW_PRESSED    (1)
    
    // LEDs
    #define MICROPY_HW_LED1             (pin_D14) // red
    #define MICROPY_HW_LED2             (pin_D12) // green
    #define MICROPY_HW_LED3             (pin_D13) // orange
    #define MICROPY_HW_LED4             (pin_D15) // blue
    #define MICROPY_HW_LED_OTYPE        (GPIO_MODE_OUTPUT_PP)
    #define MICROPY_HW_LED_ON(pin)      (pin->gpio->BSRRL = pin->pin_mask)
    #define MICROPY_HW_LED_OFF(pin)     (pin->gpio->BSRRH = pin->pin_mask)
    
    // USB VBUS detect pin
    #define MICROPY_HW_USB_VBUS_DETECT_PIN (pin_A9)