mpconfigboard.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // This board is only confirmed to operate using DFU mode and openocd.
  2. // DFU mode can be accessed by setting BOOT0 (see schematics)
  3. // To use openocd run "OPENOCD_CONFIG=boards/openocd_stm32f7.cfg" in
  4. // the make command.
  5. #define MICROPY_HW_BOARD_NAME "NUCLEO-F746ZG"
  6. #define MICROPY_HW_MCU_NAME "STM32F746"
  7. #define MICROPY_HW_HAS_SWITCH (1)
  8. #define MICROPY_HW_HAS_FLASH (1)
  9. #define MICROPY_HW_ENABLE_RNG (1)
  10. #define MICROPY_HW_ENABLE_RTC (1)
  11. #define MICROPY_HW_ENABLE_DAC (1)
  12. #define MICROPY_HW_ENABLE_USB (1)
  13. // HSE is 8MHz
  14. // VCOClock = HSE * PLLN / PLLM = 8 MHz * 216 / 4 = 432 MHz
  15. // SYSCLK = VCOClock / PLLP = 432 MHz / 2 = 216 MHz
  16. // USB/SDMMC/RNG Clock = VCOClock / PLLQ = 432 MHz / 9 = 48 MHz
  17. #define MICROPY_HW_CLK_PLLM (4)
  18. #define MICROPY_HW_CLK_PLLN (216)
  19. #define MICROPY_HW_CLK_PLLP (RCC_PLLP_DIV2)
  20. #define MICROPY_HW_CLK_PLLQ (9)
  21. // From the reference manual, for 2.7V to 3.6V
  22. // 151-180 MHz => 5 wait states
  23. // 181-210 MHz => 6 wait states
  24. // 211-216 MHz => 7 wait states
  25. #define MICROPY_HW_FLASH_LATENCY FLASH_LATENCY_7 // 210-216 MHz needs 7 wait states
  26. // UART config
  27. #define MICROPY_HW_UART2_TX (pin_D5)
  28. #define MICROPY_HW_UART2_RX (pin_D6)
  29. #define MICROPY_HW_UART2_RTS (pin_D4)
  30. #define MICROPY_HW_UART2_CTS (pin_D3)
  31. #define MICROPY_HW_UART3_TX (pin_D8)
  32. #define MICROPY_HW_UART3_RX (pin_D9)
  33. #define MICROPY_HW_UART6_TX (pin_G14)
  34. #define MICROPY_HW_UART6_RX (pin_G9)
  35. #define MICROPY_HW_UART_REPL PYB_UART_3
  36. #define MICROPY_HW_UART_REPL_BAUD 115200
  37. // I2C busses
  38. #define MICROPY_HW_I2C1_SCL (pin_B8)
  39. #define MICROPY_HW_I2C1_SDA (pin_B9)
  40. #define MICROPY_HW_I2C3_SCL (pin_H7)
  41. #define MICROPY_HW_I2C3_SDA (pin_H8)
  42. // SPI
  43. #define MICROPY_HW_SPI3_NSS (pin_A4)
  44. #define MICROPY_HW_SPI3_SCK (pin_B3)
  45. #define MICROPY_HW_SPI3_MISO (pin_B4)
  46. #define MICROPY_HW_SPI3_MOSI (pin_B5)
  47. // CAN busses
  48. #define MICROPY_HW_CAN1_TX (pin_B9)
  49. #define MICROPY_HW_CAN1_RX (pin_B8)
  50. #define MICROPY_HW_CAN2_TX (pin_B13)
  51. #define MICROPY_HW_CAN2_RX (pin_B12)
  52. // USRSW is pulled low. Pressing the button makes the input go high.
  53. #define MICROPY_HW_USRSW_PIN (pin_C13)
  54. #define MICROPY_HW_USRSW_PULL (GPIO_NOPULL)
  55. #define MICROPY_HW_USRSW_EXTI_MODE (GPIO_MODE_IT_RISING)
  56. #define MICROPY_HW_USRSW_PRESSED (1)
  57. // LEDs
  58. #define MICROPY_HW_LED1 (pin_B0) // green
  59. #define MICROPY_HW_LED2 (pin_B7) // blue
  60. #define MICROPY_HW_LED3 (pin_B14) // red
  61. #define MICROPY_HW_LED_ON(pin) (mp_hal_pin_high(pin))
  62. #define MICROPY_HW_LED_OFF(pin) (mp_hal_pin_low(pin))
  63. // USB config (CN13 - USB OTG FS)
  64. #define MICROPY_HW_USB_FS (1)
  65. #define MICROPY_HW_USB_VBUS_DETECT_PIN (pin_A9)
  66. #define MICROPY_HW_USB_OTG_ID_PIN (pin_A10)