PythonExtra/ports/stm32/boards/PYBD_SF6/mpconfigboard.h

67 lines
2.6 KiB
C

/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2018-2019 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
// Take PYBD_SF2 as base configuration
#include "boards/PYBD_SF2/mpconfigboard.h"
#undef MICROPY_HW_BOARD_NAME
#undef MICROPY_HW_MCU_NAME
#undef MICROPY_HW_CLK_PLLM
#undef MICROPY_HW_CLK_PLLN
#undef MICROPY_HW_CLK_PLLP
#undef MICROPY_HW_CLK_PLLQ
#undef MICROPY_HW_FLASH_LATENCY
#define MICROPY_HW_BOARD_NAME "PYBD-SF6W"
#define MICROPY_HW_MCU_NAME "STM32F767IIK"
// HSE is 25MHz, run SYS at 144MHz
#define MICROPY_HW_CLK_PLLM (25)
#define MICROPY_HW_CLK_PLLN (288)
#define MICROPY_HW_CLK_PLLP (RCC_PLLP_DIV2)
#define MICROPY_HW_CLK_PLLQ (6)
#define MICROPY_HW_FLASH_LATENCY (FLASH_LATENCY_4)
// Extra UART config
#define MICROPY_HW_UART7_TX (pyb_pin_W16)
#define MICROPY_HW_UART7_RX (pyb_pin_W22B)
// Extra CAN busses
#define MICROPY_HW_CAN2_NAME "Y"
#define MICROPY_HW_CAN2_TX (pyb_pin_Y6)
#define MICROPY_HW_CAN2_RX (pyb_pin_Y5)
// Ethernet via RMII
#define MICROPY_HW_ETH_MDC (pyb_pin_W24)
#define MICROPY_HW_ETH_MDIO (pyb_pin_W15)
#define MICROPY_HW_ETH_RMII_REF_CLK (pyb_pin_W17)
#define MICROPY_HW_ETH_RMII_CRS_DV (pyb_pin_W14)
#define MICROPY_HW_ETH_RMII_RXD0 (pyb_pin_W51)
#define MICROPY_HW_ETH_RMII_RXD1 (pyb_pin_W47)
#define MICROPY_HW_ETH_RMII_TX_EN (pyb_pin_W8)
#define MICROPY_HW_ETH_RMII_TXD0 (pyb_pin_W45)
#define MICROPY_HW_ETH_RMII_TXD1 (pyb_pin_W49)