You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.3 KiB
70 lines
2.3 KiB
#define CERB40
|
|
|
|
#define MICROPY_HW_BOARD_NAME "Cerb40"
|
|
#define MICROPY_HW_MCU_NAME "STM32F405RG"
|
|
#define MICROPY_PY_SYS_PLATFORM "pyboard"
|
|
|
|
#define MICROPY_HW_HAS_SWITCH (0)
|
|
#define MICROPY_HW_HAS_FLASH (1)
|
|
#define MICROPY_HW_HAS_SDCARD (0)
|
|
#define MICROPY_HW_HAS_MMA7660 (0)
|
|
#define MICROPY_HW_HAS_LIS3DSH (0)
|
|
#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_CAN (1)
|
|
|
|
// HSE is 12MHz
|
|
#define MICROPY_HW_CLK_PLLM (12)
|
|
#define MICROPY_HW_CLK_PLLN (336)
|
|
#define MICROPY_HW_CLK_PLLP (RCC_PLLP_DIV2)
|
|
#define MICROPY_HW_CLK_PLLQ (7)
|
|
|
|
// UART config
|
|
#define MICROPY_HW_UART1_PORT (GPIOA)
|
|
#define MICROPY_HW_UART1_PINS (GPIO_PIN_9 | GPIO_PIN_10)
|
|
#define MICROPY_HW_UART2_PORT (GPIOA)
|
|
#define MICROPY_HW_UART2_PINS (GPIO_PIN_2 | GPIO_PIN_3)
|
|
#define MICROPY_HW_UART2_RTS (GPIO_PIN_1)
|
|
#define MICROPY_HW_UART2_CTS (GPIO_PIN_0)
|
|
#define MICROPY_HW_UART3_PORT (GPIOD)
|
|
#define MICROPY_HW_UART3_PINS (GPIO_PIN_8 | GPIO_PIN_9)
|
|
#define MICROPY_HW_UART3_RTS (GPIO_PIN_12)
|
|
#define MICROPY_HW_UART3_CTS (GPIO_PIN_11)
|
|
#define MICROPY_HW_UART4_PORT (GPIOA)
|
|
#define MICROPY_HW_UART4_PINS (GPIO_PIN_0 | GPIO_PIN_1)
|
|
#define MICROPY_HW_UART5_TX_PORT (GPIOC)
|
|
#define MICROPY_HW_UART5_TX_PIN (GPIO_PIN_12)
|
|
#define MICROPY_HW_UART5_RX_PORT (GPIOD)
|
|
#define MICROPY_HW_UART5_RX_PIN (GPIO_PIN_2)
|
|
#define MICROPY_HW_UART6_PORT (GPIOC)
|
|
#define MICROPY_HW_UART6_PINS (GPIO_PIN_6 | GPIO_PIN_7)
|
|
|
|
// I2C busses
|
|
#define MICROPY_HW_I2C1_SCL (pin_B6)
|
|
#define MICROPY_HW_I2C1_SDA (pin_B7)
|
|
#define MICROPY_HW_I2C2_SCL (pin_B10)
|
|
#define MICROPY_HW_I2C2_SDA (pin_B11)
|
|
#define MICROPY_HW_I2C3_SCL (pin_A8)
|
|
#define MICROPY_HW_I2C3_SDA (pin_C9)
|
|
|
|
// SPI busses
|
|
#define MICROPY_HW_SPI1_NSS (pin_A4)
|
|
#define MICROPY_HW_SPI1_SCK (pin_A5)
|
|
#define MICROPY_HW_SPI1_MISO (pin_A6)
|
|
#define MICROPY_HW_SPI1_MOSI (pin_A7)
|
|
#define MICROPY_HW_SPI3_NSS (pin_A4)
|
|
#define MICROPY_HW_SPI3_SCK (pin_B3)
|
|
#define MICROPY_HW_SPI3_MISO (pin_B4)
|
|
#define MICROPY_HW_SPI3_MOSI (pin_B5)
|
|
|
|
// The Cerb40 has No LEDs
|
|
|
|
// The Cerb40 has No SDCard
|
|
|
|
// USB config
|
|
//#define MICROPY_HW_USB_VBUS_DETECT_PIN (pin_A9)
|
|
//#define MICROPY_HW_USB_OTG_ID_PIN (pin_A10)
|
|
|