Начальный
This commit is contained in:
101
PeripheralNames.h
Normal file
101
PeripheralNames.h
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
*******************************************************************************
|
||||||
|
* Copyright (c) 2016, STMicroelectronics
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*******************************************************************************
|
||||||
|
*/
|
||||||
|
#ifndef MBED_PERIPHERALNAMES_H
|
||||||
|
#define MBED_PERIPHERALNAMES_H
|
||||||
|
|
||||||
|
#include "cmsis.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef enum { ADC_1 = (int) ADC1_BASE, ADC_2 = (int) ADC2_BASE, ADC_3 = (int) ADC3_BASE } ADCName;
|
||||||
|
|
||||||
|
typedef enum { DAC_1 = DAC_BASE } DACName;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
UART_1 = (int) USART1_BASE,
|
||||||
|
UART_2 = (int) USART2_BASE,
|
||||||
|
UART_3 = (int) USART3_BASE,
|
||||||
|
UART_4 = (int) UART4_BASE,
|
||||||
|
UART_5 = (int) UART5_BASE,
|
||||||
|
UART_6 = (int) USART6_BASE,
|
||||||
|
UART_7 = (int) UART7_BASE,
|
||||||
|
UART_8 = (int) UART8_BASE
|
||||||
|
} UARTName;
|
||||||
|
|
||||||
|
#define DEVICE_SPI_COUNT 6
|
||||||
|
typedef enum {
|
||||||
|
SPI_1 = (int) SPI1_BASE,
|
||||||
|
SPI_2 = (int) SPI2_BASE,
|
||||||
|
SPI_3 = (int) SPI3_BASE,
|
||||||
|
SPI_4 = (int) SPI4_BASE,
|
||||||
|
SPI_5 = (int) SPI5_BASE,
|
||||||
|
SPI_6 = (int) SPI6_BASE
|
||||||
|
} SPIName;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
I2C_1 = (int) I2C1_BASE,
|
||||||
|
I2C_2 = (int) I2C2_BASE,
|
||||||
|
I2C_3 = (int) I2C3_BASE,
|
||||||
|
I2C_4 = (int) I2C4_BASE
|
||||||
|
} I2CName;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
PWM_1 = (int) TIM1_BASE,
|
||||||
|
PWM_2 = (int) TIM2_BASE,
|
||||||
|
PWM_3 = (int) TIM3_BASE,
|
||||||
|
PWM_4 = (int) TIM4_BASE,
|
||||||
|
PWM_5 = (int) TIM5_BASE,
|
||||||
|
PWM_8 = (int) TIM8_BASE,
|
||||||
|
PWM_9 = (int) TIM9_BASE,
|
||||||
|
PWM_10 = (int) TIM10_BASE,
|
||||||
|
PWM_11 = (int) TIM11_BASE,
|
||||||
|
PWM_12 = (int) TIM12_BASE,
|
||||||
|
PWM_13 = (int) TIM13_BASE,
|
||||||
|
PWM_14 = (int) TIM14_BASE
|
||||||
|
} PWMName;
|
||||||
|
|
||||||
|
typedef enum { CAN_1 = (int) CAN1_BASE, CAN_2 = (int) CAN2_BASE } CANName;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
QSPI_1 = (int) QSPI_R_BASE,
|
||||||
|
} QSPIName;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
USB_FS = (int) USB_OTG_FS_PERIPH_BASE,
|
||||||
|
USB_HS = (int) USB_OTG_HS_PERIPH_BASE
|
||||||
|
} USBName;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
788
PeripheralPins.c
Normal file
788
PeripheralPins.c
Normal file
@@ -0,0 +1,788 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
*******************************************************************************
|
||||||
|
* Copyright (c) 2018, STMicroelectronics
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "PeripheralPins.h"
|
||||||
|
#include "mbed_toolchain.h"
|
||||||
|
|
||||||
|
//==============================================================================
|
||||||
|
// Notes
|
||||||
|
//
|
||||||
|
// - The pins mentioned Px_y_ALTz are alternative possibilities which use other
|
||||||
|
// HW peripheral instances. You can use them the same way as any other "normal"
|
||||||
|
// pin (i.e. PwmOut pwm(PA_7_ALT0);). These pins are not displayed on the board
|
||||||
|
// pinout image on mbed.org.
|
||||||
|
//
|
||||||
|
// - The pins which are connected to other components present on the board have
|
||||||
|
// the comment "Connected to xxx". The pin function may not work properly in this
|
||||||
|
// case. These pins may not be displayed on the board pinout image on mbed.org.
|
||||||
|
// Please read the board reference manual and schematic for more information.
|
||||||
|
//
|
||||||
|
// - Warning: pins connected to the default STDIO_UART_TX and STDIO_UART_RX pins are commented
|
||||||
|
// See https://os.mbed.com/teams/ST/wiki/STDIO for more information.
|
||||||
|
//
|
||||||
|
//==============================================================================
|
||||||
|
|
||||||
|
//*** ADC ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_ADC[] = {
|
||||||
|
{PA_0, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC1_IN0
|
||||||
|
{PA_0_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC2_IN0
|
||||||
|
{PA_0_ALT1, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC3_IN0
|
||||||
|
{PA_1,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
0)}, // ADC1_IN1 // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PA_1_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
0)}, // ADC2_IN1 // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PA_1_ALT1,
|
||||||
|
ADC_3,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
0)}, // ADC3_IN1 // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PA_2,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
2,
|
||||||
|
0)}, // ADC1_IN2 // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
{PA_2_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
2,
|
||||||
|
0)}, // ADC2_IN2 // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
{PA_2_ALT1,
|
||||||
|
ADC_3,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
2,
|
||||||
|
0)}, // ADC3_IN2 // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
{PA_3, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC1_IN3
|
||||||
|
{PA_3_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC2_IN3
|
||||||
|
{PA_3_ALT1, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC3_IN3
|
||||||
|
{PA_4, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC1_IN4
|
||||||
|
{PA_4_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC2_IN4
|
||||||
|
{PA_5, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC1_IN5
|
||||||
|
{PA_5_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC2_IN5
|
||||||
|
{PA_6, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC1_IN6
|
||||||
|
{PA_6_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC2_IN6
|
||||||
|
{PA_7,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
7,
|
||||||
|
0)}, // ADC1_IN7 // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV]
|
||||||
|
{PA_7_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
7,
|
||||||
|
0)}, // ADC2_IN7 // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV]
|
||||||
|
{PB_0,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC1_IN8 // Connected to LD1 [Green]
|
||||||
|
{PB_0_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC2_IN8 // Connected to LD1 [Green]
|
||||||
|
{PB_1, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC1_IN9
|
||||||
|
{PB_1_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC2_IN9
|
||||||
|
{PC_0, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC1_IN10
|
||||||
|
{PC_0_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC2_IN10
|
||||||
|
{PC_0_ALT1, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC3_IN10
|
||||||
|
{PC_1,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
11,
|
||||||
|
0)}, // ADC1_IN11 // Connected to RMII_MDC [LAN8742A-CZ-TR_MDC]
|
||||||
|
{PC_1_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
11,
|
||||||
|
0)}, // ADC2_IN11 // Connected to RMII_MDC [LAN8742A-CZ-TR_MDC]
|
||||||
|
{PC_1_ALT1,
|
||||||
|
ADC_3,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
11,
|
||||||
|
0)}, // ADC3_IN11 // Connected to RMII_MDC [LAN8742A-CZ-TR_MDC]
|
||||||
|
{PC_2, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC1_IN12
|
||||||
|
{PC_2_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC2_IN12
|
||||||
|
{PC_2_ALT1, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC3_IN12
|
||||||
|
{PC_3, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC1_IN13
|
||||||
|
{PC_3_ALT0, ADC_2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC2_IN13
|
||||||
|
{PC_3_ALT1, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC3_IN13
|
||||||
|
{PC_4,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
14,
|
||||||
|
0)}, // ADC1_IN14 // Connected to RMII_RXD0 [LAN8742A-CZ-TR_RXD0]
|
||||||
|
{PC_4_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
14,
|
||||||
|
0)}, // ADC2_IN14 // Connected to RMII_RXD0 [LAN8742A-CZ-TR_RXD0]
|
||||||
|
{PC_5,
|
||||||
|
ADC_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
15,
|
||||||
|
0)}, // ADC1_IN15 // Connected to RMII_RXD1 [LAN8742A-CZ-TR_RXD1]
|
||||||
|
{PC_5_ALT0,
|
||||||
|
ADC_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_ANALOG,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
0,
|
||||||
|
15,
|
||||||
|
0)}, // ADC2_IN15 // Connected to RMII_RXD1 [LAN8742A-CZ-TR_RXD1]
|
||||||
|
{PF_3, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC3_IN9
|
||||||
|
{PF_4, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 14, 0)}, // ADC3_IN14
|
||||||
|
{PF_5, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 15, 0)}, // ADC3_IN15
|
||||||
|
{PF_6, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC3_IN4
|
||||||
|
{PF_7, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC3_IN5
|
||||||
|
{PF_8, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC3_IN6
|
||||||
|
{PF_9, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 7, 0)}, // ADC3_IN7
|
||||||
|
{PF_10, ADC_3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC3_IN8
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_ADC_Internal[]
|
||||||
|
= {{ADC_TEMP, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 16, 0)},
|
||||||
|
{ADC_VREF, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 17, 0)},
|
||||||
|
{ADC_VBAT, ADC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 18, 0)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** DAC ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_DAC[]
|
||||||
|
= {{PA_4, DAC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 1, 0)}, // DAC_OUT1
|
||||||
|
{PA_5, DAC_1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // DAC_OUT2
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** I2C ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_I2C_SDA[]
|
||||||
|
= {{PB_7,
|
||||||
|
I2C_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, // Connected to LD2 [Blue]
|
||||||
|
{PB_9, I2C_1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)},
|
||||||
|
{PB_11, I2C_2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)},
|
||||||
|
{PC_9, I2C_3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)},
|
||||||
|
{PD_13, I2C_4, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C4)},
|
||||||
|
{PF_0, I2C_2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)},
|
||||||
|
{PF_15, I2C_4, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C4)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_I2C_SCL[]
|
||||||
|
= {{PA_8,
|
||||||
|
I2C_3,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)}, // Connected to USB_SOF [TP1]
|
||||||
|
{PB_6, I2C_1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)},
|
||||||
|
{PB_8, I2C_1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)},
|
||||||
|
{PB_10, I2C_2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)},
|
||||||
|
{PD_12, I2C_4, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C4)},
|
||||||
|
{PF_1, I2C_2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)},
|
||||||
|
{PF_14, I2C_4, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C4)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** PWM ***
|
||||||
|
|
||||||
|
// TIM5 cannot be used because already used by the us_ticker
|
||||||
|
MBED_WEAK const PinMap PinMap_PWM[] = {
|
||||||
|
{PA_0, PWM_2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||||
|
// {PA_0, PWM_5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM5, 1, 0)}, // TIM5_CH1
|
||||||
|
{PA_1,
|
||||||
|
PWM_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM2,
|
||||||
|
2,
|
||||||
|
0)}, // TIM2_CH2 // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
// {PA_1, PWM_5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM5, 2, 0)}, // TIM5_CH2 // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PA_2,
|
||||||
|
PWM_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM2,
|
||||||
|
3,
|
||||||
|
0)}, // TIM2_CH3 // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
// {PA_2, PWM_5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM5, 3, 0)}, // TIM5_CH3 // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
{PA_2_ALT0,
|
||||||
|
PWM_9,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF3_TIM9,
|
||||||
|
1,
|
||||||
|
0)}, // TIM9_CH1 // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
{PA_3, PWM_2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 4, 0)}, // TIM2_CH4
|
||||||
|
// {PA_3, PWM_5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM5, 4, 0)}, // TIM5_CH4
|
||||||
|
{PA_3_ALT0,
|
||||||
|
PWM_9,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM9, 2, 0)}, // TIM9_CH2
|
||||||
|
{PA_5, PWM_2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||||
|
{PA_5_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 1, 1)}, // TIM8_CH1N
|
||||||
|
{PA_6, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||||
|
{PA_6_ALT0,
|
||||||
|
PWM_13,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_TIM13, 1, 0)}, // TIM13_CH1
|
||||||
|
{PA_7,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
1,
|
||||||
|
1)}, // TIM1_CH1N // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV] - JP6 ON
|
||||||
|
{PA_7_ALT0,
|
||||||
|
PWM_3,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF2_TIM3,
|
||||||
|
2,
|
||||||
|
0)}, // TIM3_CH2 // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV] - JP6 ON
|
||||||
|
{PA_7_ALT1,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF3_TIM8,
|
||||||
|
1,
|
||||||
|
1)}, // TIM8_CH1N // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV] - JP6 ON
|
||||||
|
{PA_7_ALT2,
|
||||||
|
PWM_14,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF9_TIM14,
|
||||||
|
1,
|
||||||
|
0)}, // TIM14_CH1 // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV] - JP6 ON
|
||||||
|
{PA_8,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
1,
|
||||||
|
0)}, // TIM1_CH1 // Connected to USB_SOF [TP1]
|
||||||
|
{PA_9,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
2,
|
||||||
|
0)}, // TIM1_CH2 // Connected to USB_VBUS
|
||||||
|
{PA_10,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
3,
|
||||||
|
0)}, // TIM1_CH3 // Connected to USB_ID
|
||||||
|
{PA_11,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
4,
|
||||||
|
0)}, // TIM1_CH4 // Connected to USB_DM
|
||||||
|
{PA_15, PWM_2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||||
|
{PB_0,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
2,
|
||||||
|
1)}, // TIM1_CH2N // Connected to LD1 [Green]
|
||||||
|
{PB_0_ALT0,
|
||||||
|
PWM_3,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF2_TIM3,
|
||||||
|
3,
|
||||||
|
0)}, // TIM3_CH3 // Connected to LD1 [Green]
|
||||||
|
{PB_0_ALT1,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF3_TIM8,
|
||||||
|
2,
|
||||||
|
1)}, // TIM8_CH2N // Connected to LD1 [Green]
|
||||||
|
{PB_1, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||||
|
{PB_1_ALT0,
|
||||||
|
PWM_3,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
|
||||||
|
{PB_1_ALT1,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 3, 1)}, // TIM8_CH3N
|
||||||
|
{PB_3,
|
||||||
|
PWM_2,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 2, 0)}, // TIM2_CH2 // Connected to SW0
|
||||||
|
{PB_4, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||||
|
{PB_5, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||||
|
{PB_6, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 1, 0)}, // TIM4_CH1
|
||||||
|
{PB_7,
|
||||||
|
PWM_4,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF2_TIM4,
|
||||||
|
2,
|
||||||
|
0)}, // TIM4_CH2 // Connected to LD2 [Blue]
|
||||||
|
{PB_8, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 3, 0)}, // TIM4_CH3
|
||||||
|
{PB_8_ALT0,
|
||||||
|
PWM_10,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM10, 1, 0)}, // TIM10_CH1
|
||||||
|
{PB_9, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 4, 0)}, // TIM4_CH4
|
||||||
|
{PB_9_ALT0,
|
||||||
|
PWM_11,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM11, 1, 0)}, // TIM11_CH1
|
||||||
|
{PB_10, PWM_2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 3, 0)}, // TIM2_CH3
|
||||||
|
{PB_11, PWM_2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM2, 4, 0)}, // TIM2_CH4
|
||||||
|
{PB_13,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
1,
|
||||||
|
1)}, // TIM1_CH1N // Connected to RMII_TXD1 [LAN8742A-CZ-TR_TXD1] - JP7 OFF
|
||||||
|
{PB_14,
|
||||||
|
PWM_1,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF1_TIM1,
|
||||||
|
2,
|
||||||
|
1)}, // TIM1_CH2N // Connected to LD3 [Red]
|
||||||
|
{PB_14_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF3_TIM8,
|
||||||
|
2,
|
||||||
|
1)}, // TIM8_CH2N // Connected to LD3 [Red]
|
||||||
|
{PB_14_ALT1,
|
||||||
|
PWM_12,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF9_TIM12,
|
||||||
|
1,
|
||||||
|
0)}, // TIM12_CH1 // Connected to LD3 [Red]
|
||||||
|
{PB_15, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||||
|
{PB_15_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 3, 1)}, // TIM8_CH3N
|
||||||
|
{PB_15_ALT1,
|
||||||
|
PWM_12,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_TIM12, 2, 0)}, // TIM12_CH2
|
||||||
|
{PC_6, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||||
|
{PC_6_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 1, 0)}, // TIM8_CH1
|
||||||
|
{PC_7, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||||
|
{PC_7_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 2, 0)}, // TIM8_CH2
|
||||||
|
{PC_8, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 3, 0)}, // TIM3_CH3
|
||||||
|
{PC_8_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 3, 0)}, // TIM8_CH3
|
||||||
|
{PC_9, PWM_3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
|
||||||
|
{PC_9_ALT0,
|
||||||
|
PWM_8,
|
||||||
|
STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM8, 4, 0)}, // TIM8_CH4
|
||||||
|
{PD_12, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 1, 0)}, // TIM4_CH1
|
||||||
|
{PD_13, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 2, 0)}, // TIM4_CH2
|
||||||
|
{PD_14, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 3, 0)}, // TIM4_CH3
|
||||||
|
{PD_15, PWM_4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM4, 4, 0)}, // TIM4_CH4
|
||||||
|
{PE_5, PWM_9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM9, 1, 0)}, // TIM9_CH1
|
||||||
|
{PE_6, PWM_9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM9, 2, 0)}, // TIM9_CH2
|
||||||
|
{PE_8, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 1, 1)}, // TIM1_CH1N
|
||||||
|
{PE_9, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 1, 0)}, // TIM1_CH1
|
||||||
|
{PE_10, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 2, 1)}, // TIM1_CH2N
|
||||||
|
{PE_11, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 2, 0)}, // TIM1_CH2
|
||||||
|
{PE_12, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||||
|
{PE_13, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 3, 0)}, // TIM1_CH3
|
||||||
|
{PE_14, PWM_1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF1_TIM1, 4, 0)}, // TIM1_CH4
|
||||||
|
{PF_6, PWM_10, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM10, 1, 0)}, // TIM10_CH1
|
||||||
|
{PF_7, PWM_11, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF3_TIM11, 1, 0)}, // TIM11_CH1
|
||||||
|
{PF_8, PWM_13, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_TIM13, 1, 0)}, // TIM13_CH1
|
||||||
|
{PF_9, PWM_14, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_TIM14, 1, 0)}, // TIM14_CH1
|
||||||
|
{PH_10, PWM_5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF2_TIM5, 1, 0)}, // TIM5_CH1
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** SERIAL ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_UART_TX[] = {
|
||||||
|
{PA_0, UART_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||||
|
{PA_2,
|
||||||
|
UART_2,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF7_USART2)}, // Connected to RMII_MDIO [LAN8742A-CZ-TR_MDIO]
|
||||||
|
{PA_9,
|
||||||
|
UART_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, // Connected to USB_VBUS
|
||||||
|
{PB_6, UART_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
|
||||||
|
// {PB_10, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // STDIO UART
|
||||||
|
{PC_6, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
// {PC_10, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // STDIO UART
|
||||||
|
{PC_10, UART_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||||
|
{PC_12, UART_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART5)},
|
||||||
|
{PD_5, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||||
|
{PD_8,
|
||||||
|
UART_3,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // Connected to STDIO_UART_TX
|
||||||
|
{PE_1, UART_8, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART8)},
|
||||||
|
{PE_8, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PF_7, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PG_14, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_UART_RX[] = {
|
||||||
|
{PA_1,
|
||||||
|
UART_4,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF8_UART4)}, // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PA_3, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||||
|
{PA_10,
|
||||||
|
UART_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, // Connected to USB_ID
|
||||||
|
{PB_7,
|
||||||
|
UART_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, // Connected to LD2 [Blue]
|
||||||
|
// {PB_11, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // STDIO UART
|
||||||
|
{PC_7, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
// {PC_11, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // STDIO UART
|
||||||
|
{PC_11, UART_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||||
|
{PD_2, UART_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART5)},
|
||||||
|
{PD_6, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||||
|
{PD_9,
|
||||||
|
UART_3,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // Connected to STDIO_UART_RX
|
||||||
|
{PE_0, UART_8, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART8)},
|
||||||
|
{PE_7, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PF_6, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PG_9, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_UART_RTS[]
|
||||||
|
= {{PA_1,
|
||||||
|
UART_2,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF7_USART2)}, // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PA_12,
|
||||||
|
UART_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, // Connected to USB_DP
|
||||||
|
{PA_15, UART_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||||
|
{PB_14,
|
||||||
|
UART_3,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)}, // Connected to LD3 [Red]
|
||||||
|
{PC_8, UART_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_UART5)},
|
||||||
|
{PD_4, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||||
|
{PD_12, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||||
|
{PD_15, UART_8, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART8)},
|
||||||
|
{PE_9, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PF_8, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PG_8, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
{PG_12, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_UART_CTS[]
|
||||||
|
= {{PA_0, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||||
|
{PA_11,
|
||||||
|
UART_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, // Connected to USB_DM
|
||||||
|
{PB_0,
|
||||||
|
UART_4,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)}, // Connected to LD1 [Green]
|
||||||
|
{PB_13,
|
||||||
|
UART_3,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF7_USART3)}, // Connected to RMII_TXD1 [LAN8742A-CZ-TR_TXD1]
|
||||||
|
{PC_9, UART_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_UART5)},
|
||||||
|
{PD_3, UART_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||||
|
{PD_11, UART_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||||
|
{PD_14, UART_8, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART8)},
|
||||||
|
{PE_10, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PF_9, UART_7, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART7)},
|
||||||
|
{PG_13,
|
||||||
|
UART_6,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF8_USART6)}, // Connected to RMII_TXD0 [LAN8742A-CZ-TR_TXD0]
|
||||||
|
{PG_15, UART_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** SPI ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_SPI_MOSI[]
|
||||||
|
= {{PA_7,
|
||||||
|
SPI_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF5_SPI1)}, // Connected to RMII_CRS_DV [LAN8742A-CZ-TR_CRS_DV]
|
||||||
|
{PB_2, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF7_SPI3)},
|
||||||
|
{PB_5, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)},
|
||||||
|
{PB_5_ALT0, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PB_15, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PC_1,
|
||||||
|
SPI_2,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF5_SPI2)}, // Connected to RMII_MDC [LAN8742A-CZ-TR_MDC]
|
||||||
|
{PC_3, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PC_12, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PD_6, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI3)},
|
||||||
|
{PE_6, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PE_14, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PF_9, SPI_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI5)},
|
||||||
|
{PF_11, SPI_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI5)},
|
||||||
|
{PG_14, SPI_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_SPI_MISO[]
|
||||||
|
= {{PA_6, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)},
|
||||||
|
{PB_4, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)},
|
||||||
|
{PB_4_ALT0, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PB_14,
|
||||||
|
SPI_2,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)}, // Connected to LD3 [Red]
|
||||||
|
{PC_2, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PC_11, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PE_5, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PE_13, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PF_8, SPI_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI5)},
|
||||||
|
{PG_12, SPI_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_SPI_SCLK[] = {
|
||||||
|
{PA_5, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)},
|
||||||
|
{PA_9, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)}, // Connected to USB_VBUS
|
||||||
|
{PB_3, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)}, // Connected to SW0
|
||||||
|
{PB_3_ALT0, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)}, // Connected to SW0
|
||||||
|
{PB_10, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PB_13,
|
||||||
|
SPI_2,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF5_SPI2)}, // Connected to RMII_TXD1 [LAN8742A-CZ-TR_TXD1]
|
||||||
|
{PC_10, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PD_3, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PE_2, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PE_12, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PF_7, SPI_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI5)},
|
||||||
|
{PG_13,
|
||||||
|
SPI_6,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF5_SPI6)}, // Connected to RMII_TXD0 [LAN8742A-CZ-TR_TXD0]
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_SPI_SSEL[]
|
||||||
|
= {{PA_4, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)},
|
||||||
|
{PA_4_ALT0, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PA_15, SPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI1)},
|
||||||
|
{PA_15_ALT0, SPI_3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF6_SPI3)},
|
||||||
|
{PB_4, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF7_SPI2)},
|
||||||
|
{PB_9, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PB_12, SPI_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI2)},
|
||||||
|
{PE_4, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PE_11, SPI_4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI4)},
|
||||||
|
{PF_6, SPI_5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI5)},
|
||||||
|
{PG_8, SPI_6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF5_SPI6)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** CAN ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_CAN_RD[]
|
||||||
|
= {{PA_11,
|
||||||
|
CAN_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)}, // Connected to USB_DM
|
||||||
|
{PB_5, CAN_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||||
|
{PB_8, CAN_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||||
|
{PB_12, CAN_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||||
|
{PD_0, CAN_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_CAN_TD[]
|
||||||
|
= {{PA_12,
|
||||||
|
CAN_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)}, // Connected to USB_DP
|
||||||
|
{PB_6, CAN_2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||||
|
{PB_9, CAN_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||||
|
{PB_13,
|
||||||
|
CAN_2,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF9_CAN2)}, // Connected to RMII_TXD1 [LAN8742A-CZ-TR_TXD1]
|
||||||
|
{PD_1, CAN_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** QUADSPI ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_QSPI_DATA0[] = {
|
||||||
|
{PC_9, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO0
|
||||||
|
{PD_11, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO0
|
||||||
|
{PF_8, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_QUADSPI)}, // QUADSPI_BK1_IO0
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_QSPI_DATA1[] = {
|
||||||
|
{PC_10, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO1
|
||||||
|
{PD_12, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO1
|
||||||
|
{PF_9, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_QUADSPI)}, // QUADSPI_BK1_IO1
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_QSPI_DATA2[] = {
|
||||||
|
{PE_2, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO2
|
||||||
|
{PF_7, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO2
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_QSPI_DATA3[] = {
|
||||||
|
{PA_1,
|
||||||
|
QSPI_1,
|
||||||
|
STM_PIN_DATA(
|
||||||
|
STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO3 // Connected to RMII_REF_CLK [LAN8742A-CZ-TR_REFCLK0]
|
||||||
|
{PD_13, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO3
|
||||||
|
{PF_6, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_BK1_IO3
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_QSPI_SCLK[]
|
||||||
|
= {{PB_2, QSPI_1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_QUADSPI)}, // QUADSPI_CLK
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_QSPI_SSEL[] = {{PB_6,
|
||||||
|
QSPI_1,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF10_QUADSPI)}, // QUADSPI_BK1_NCS
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** USBDEVICE ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_USB_FS[] = {
|
||||||
|
// {PA_8, USB_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_SOF // Connected to USB_SOF [TP1]
|
||||||
|
{PA_9,
|
||||||
|
USB_FS,
|
||||||
|
STM_PIN_DATA(STM_MODE_INPUT,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF_NONE)}, // USB_OTG_FS_VBUS // Connected to USB_VBUS
|
||||||
|
{PA_10,
|
||||||
|
USB_FS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_OD,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF10_OTG_FS)}, // USB_OTG_FS_ID // Connected to USB_ID
|
||||||
|
{PA_11,
|
||||||
|
USB_FS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF10_OTG_FS)}, // USB_OTG_FS_DM // Connected to USB_DM
|
||||||
|
{PA_12,
|
||||||
|
USB_FS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF10_OTG_FS)}, // USB_OTG_FS_DP // Connected to USB_DP
|
||||||
|
{NC, NC, 0}};
|
||||||
|
|
||||||
|
//*** USBDEVICE ***
|
||||||
|
|
||||||
|
MBED_WEAK const PinMap PinMap_USB_HS[] = {
|
||||||
|
#if (MBED_CONF_TARGET_USB_SPEED == USE_USB_HS_IN_FS)
|
||||||
|
// {PA_4, USB_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_SOF
|
||||||
|
{PB_12, USB_HS, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_ID
|
||||||
|
{PB_13,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_INPUT,
|
||||||
|
GPIO_NOPULL,
|
||||||
|
GPIO_AF_NONE)}, // USB_OTG_HS_VBUS // Connected to RMII_TXD1 [LAN8742A-CZ-TR_TXD1]
|
||||||
|
{PB_14,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_DM // Connected to LD3 [Red]
|
||||||
|
{PB_15, USB_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_DP
|
||||||
|
#else /* MBED_CONF_TARGET_USB_SPEED */
|
||||||
|
{PA_3, USB_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D0
|
||||||
|
{PA_5, USB_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_CK
|
||||||
|
{PB_0,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D1 // Connected to LD1 [Green]
|
||||||
|
{PB_1, USB_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D2
|
||||||
|
{PB_5, USB_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D7
|
||||||
|
{PB_10,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D3
|
||||||
|
{PB_11,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D4
|
||||||
|
{PB_12,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D5
|
||||||
|
{PB_13,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP,
|
||||||
|
GPIO_PULLUP,
|
||||||
|
GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D6 // Connected to RMII_TXD1 [LAN8742A-CZ-TR_TXD1]
|
||||||
|
{PC_0,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_STP
|
||||||
|
{PC_2,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_DIR
|
||||||
|
{PC_3,
|
||||||
|
USB_HS,
|
||||||
|
STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_NXT
|
||||||
|
#endif /* MBED_CONF_TARGET_USB_SPEED */
|
||||||
|
{NC, NC, 0}};
|
||||||
427
PinNames.h
Normal file
427
PinNames.h
Normal file
@@ -0,0 +1,427 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
******************************************************************************
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016-2021 STMicroelectronics.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This software component is licensed by ST under BSD 3-Clause license,
|
||||||
|
* the "License"; You may not use this file except in compliance with the
|
||||||
|
* License. You may obtain a copy of the License at:
|
||||||
|
* opensource.org/licenses/BSD-3-Clause
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*
|
||||||
|
* Automatically generated from STM32CubeMX/db/mcu/STM32F746ZGTx.xml
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* MBED TARGET LIST: NUCLEO_F746ZG */
|
||||||
|
|
||||||
|
#ifndef MBED_PINNAMES_H
|
||||||
|
#define MBED_PINNAMES_H
|
||||||
|
|
||||||
|
#include "PinNamesTypes.h"
|
||||||
|
#include "cmsis.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
ALT0 = 0x100,
|
||||||
|
ALT1 = 0x200,
|
||||||
|
ALT2 = 0x300,
|
||||||
|
} ALTx;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
PA_0 = 0x00,
|
||||||
|
PA_0_ALT0 = PA_0 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_0_ALT1 = PA_0 | ALT1, // same pin used for alternate HW
|
||||||
|
PA_1 = 0x01,
|
||||||
|
PA_1_ALT0 = PA_1 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_1_ALT1 = PA_1 | ALT1, // same pin used for alternate HW
|
||||||
|
PA_2 = 0x02,
|
||||||
|
PA_2_ALT0 = PA_2 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_2_ALT1 = PA_2 | ALT1, // same pin used for alternate HW
|
||||||
|
PA_3 = 0x03,
|
||||||
|
PA_3_ALT0 = PA_3 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_3_ALT1 = PA_3 | ALT1, // same pin used for alternate HW
|
||||||
|
PA_4 = 0x04,
|
||||||
|
PA_4_ALT0 = PA_4 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_5 = 0x05,
|
||||||
|
PA_5_ALT0 = PA_5 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_6 = 0x06,
|
||||||
|
PA_6_ALT0 = PA_6 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_7 = 0x07,
|
||||||
|
PA_7_ALT0 = PA_7 | ALT0, // same pin used for alternate HW
|
||||||
|
PA_7_ALT1 = PA_7 | ALT1, // same pin used for alternate HW
|
||||||
|
PA_7_ALT2 = PA_7 | ALT2, // same pin used for alternate HW
|
||||||
|
PA_8 = 0x08,
|
||||||
|
PA_9 = 0x09,
|
||||||
|
PA_10 = 0x0A,
|
||||||
|
PA_11 = 0x0B,
|
||||||
|
PA_12 = 0x0C,
|
||||||
|
PA_13 = 0x0D,
|
||||||
|
PA_14 = 0x0E,
|
||||||
|
PA_15 = 0x0F,
|
||||||
|
PA_15_ALT0 = PA_15 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_0 = 0x10,
|
||||||
|
PB_0_ALT0 = PB_0 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_0_ALT1 = PB_0 | ALT1, // same pin used for alternate HW
|
||||||
|
PB_1 = 0x11,
|
||||||
|
PB_1_ALT0 = PB_1 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_1_ALT1 = PB_1 | ALT1, // same pin used for alternate HW
|
||||||
|
PB_2 = 0x12,
|
||||||
|
PB_3 = 0x13,
|
||||||
|
PB_3_ALT0 = PB_3 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_4 = 0x14,
|
||||||
|
PB_4_ALT0 = PB_4 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_5 = 0x15,
|
||||||
|
PB_5_ALT0 = PB_5 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_6 = 0x16,
|
||||||
|
PB_6_ALT0 = PB_6 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_7 = 0x17,
|
||||||
|
PB_8 = 0x18,
|
||||||
|
PB_8_ALT0 = PB_8 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_9 = 0x19,
|
||||||
|
PB_9_ALT0 = PB_9 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_10 = 0x1A,
|
||||||
|
PB_11 = 0x1B,
|
||||||
|
PB_12 = 0x1C,
|
||||||
|
PB_13 = 0x1D,
|
||||||
|
PB_14 = 0x1E,
|
||||||
|
PB_14_ALT0 = PB_14 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_14_ALT1 = PB_14 | ALT1, // same pin used for alternate HW
|
||||||
|
PB_15 = 0x1F,
|
||||||
|
PB_15_ALT0 = PB_15 | ALT0, // same pin used for alternate HW
|
||||||
|
PB_15_ALT1 = PB_15 | ALT1, // same pin used for alternate HW
|
||||||
|
PC_0 = 0x20,
|
||||||
|
PC_0_ALT0 = PC_0 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_0_ALT1 = PC_0 | ALT1, // same pin used for alternate HW
|
||||||
|
PC_1 = 0x21,
|
||||||
|
PC_1_ALT0 = PC_1 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_1_ALT1 = PC_1 | ALT1, // same pin used for alternate HW
|
||||||
|
PC_2 = 0x22,
|
||||||
|
PC_2_ALT0 = PC_2 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_2_ALT1 = PC_2 | ALT1, // same pin used for alternate HW
|
||||||
|
PC_3 = 0x23,
|
||||||
|
PC_3_ALT0 = PC_3 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_3_ALT1 = PC_3 | ALT1, // same pin used for alternate HW
|
||||||
|
PC_4 = 0x24,
|
||||||
|
PC_4_ALT0 = PC_4 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_5 = 0x25,
|
||||||
|
PC_5_ALT0 = PC_5 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_6 = 0x26,
|
||||||
|
PC_6_ALT0 = PC_6 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_7 = 0x27,
|
||||||
|
PC_7_ALT0 = PC_7 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_8 = 0x28,
|
||||||
|
PC_8_ALT0 = PC_8 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_9 = 0x29,
|
||||||
|
PC_9_ALT0 = PC_9 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_10 = 0x2A,
|
||||||
|
PC_10_ALT0 = PC_10 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_11 = 0x2B,
|
||||||
|
PC_11_ALT0 = PC_11 | ALT0, // same pin used for alternate HW
|
||||||
|
PC_12 = 0x2C,
|
||||||
|
PC_13 = 0x2D,
|
||||||
|
PC_14 = 0x2E,
|
||||||
|
PC_15 = 0x2F,
|
||||||
|
PD_0 = 0x30,
|
||||||
|
PD_1 = 0x31,
|
||||||
|
PD_2 = 0x32,
|
||||||
|
PD_3 = 0x33,
|
||||||
|
PD_4 = 0x34,
|
||||||
|
PD_5 = 0x35,
|
||||||
|
PD_6 = 0x36,
|
||||||
|
PD_7 = 0x37,
|
||||||
|
PD_8 = 0x38,
|
||||||
|
PD_9 = 0x39,
|
||||||
|
PD_10 = 0x3A,
|
||||||
|
PD_11 = 0x3B,
|
||||||
|
PD_12 = 0x3C,
|
||||||
|
PD_13 = 0x3D,
|
||||||
|
PD_14 = 0x3E,
|
||||||
|
PD_15 = 0x3F,
|
||||||
|
PE_0 = 0x40,
|
||||||
|
PE_1 = 0x41,
|
||||||
|
PE_2 = 0x42,
|
||||||
|
PE_3 = 0x43,
|
||||||
|
PE_4 = 0x44,
|
||||||
|
PE_5 = 0x45,
|
||||||
|
PE_6 = 0x46,
|
||||||
|
PE_7 = 0x47,
|
||||||
|
PE_8 = 0x48,
|
||||||
|
PE_9 = 0x49,
|
||||||
|
PE_10 = 0x4A,
|
||||||
|
PE_11 = 0x4B,
|
||||||
|
PE_12 = 0x4C,
|
||||||
|
PE_13 = 0x4D,
|
||||||
|
PE_14 = 0x4E,
|
||||||
|
PE_15 = 0x4F,
|
||||||
|
PF_0 = 0x50,
|
||||||
|
PF_1 = 0x51,
|
||||||
|
PF_2 = 0x52,
|
||||||
|
PF_3 = 0x53,
|
||||||
|
PF_4 = 0x54,
|
||||||
|
PF_5 = 0x55,
|
||||||
|
PF_6 = 0x56,
|
||||||
|
PF_7 = 0x57,
|
||||||
|
PF_8 = 0x58,
|
||||||
|
PF_9 = 0x59,
|
||||||
|
PF_10 = 0x5A,
|
||||||
|
PF_11 = 0x5B,
|
||||||
|
PF_12 = 0x5C,
|
||||||
|
PF_13 = 0x5D,
|
||||||
|
PF_14 = 0x5E,
|
||||||
|
PF_15 = 0x5F,
|
||||||
|
PG_0 = 0x60,
|
||||||
|
PG_1 = 0x61,
|
||||||
|
PG_2 = 0x62,
|
||||||
|
PG_3 = 0x63,
|
||||||
|
PG_4 = 0x64,
|
||||||
|
PG_5 = 0x65,
|
||||||
|
PG_6 = 0x66,
|
||||||
|
PG_7 = 0x67,
|
||||||
|
PG_8 = 0x68,
|
||||||
|
PG_9 = 0x69,
|
||||||
|
PG_10 = 0x6A,
|
||||||
|
PG_11 = 0x6B,
|
||||||
|
PG_12 = 0x6C,
|
||||||
|
PG_13 = 0x6D,
|
||||||
|
PG_14 = 0x6E,
|
||||||
|
PG_15 = 0x6F,
|
||||||
|
PH_0 = 0x70,
|
||||||
|
PH_1 = 0x71,
|
||||||
|
PH_2 = 0x72,
|
||||||
|
PH_3 = 0x73,
|
||||||
|
PH_4 = 0x74,
|
||||||
|
PH_5 = 0x75,
|
||||||
|
PH_6 = 0x76,
|
||||||
|
PH_7 = 0x77,
|
||||||
|
PH_8 = 0x78,
|
||||||
|
PH_9 = 0x79,
|
||||||
|
PH_10 = 0x7A,
|
||||||
|
PH_11 = 0x7B,
|
||||||
|
PH_12 = 0x7C,
|
||||||
|
PH_13 = 0x7D,
|
||||||
|
PH_14 = 0x7E,
|
||||||
|
PH_15 = 0x7F,
|
||||||
|
/**** ADC internal channels ****/
|
||||||
|
|
||||||
|
ADC_TEMP = 0xF0, // Internal pin virtual value
|
||||||
|
ADC_VREF = 0xF1, // Internal pin virtual value
|
||||||
|
ADC_VBAT = 0xF2, // Internal pin virtual value
|
||||||
|
|
||||||
|
#ifdef TARGET_FF_ARDUINO_UNO
|
||||||
|
// Arduino Uno (Rev3) pins
|
||||||
|
ARDUINO_UNO_A0 = PA_3,
|
||||||
|
ARDUINO_UNO_A1 = PC_0,
|
||||||
|
ARDUINO_UNO_A2 = PC_3,
|
||||||
|
ARDUINO_UNO_A3 = PF_3,
|
||||||
|
ARDUINO_UNO_A4 = PF_5,
|
||||||
|
ARDUINO_UNO_A5 = PF_10,
|
||||||
|
|
||||||
|
ARDUINO_UNO_D0 = PG_9,
|
||||||
|
ARDUINO_UNO_D1 = PG_14,
|
||||||
|
ARDUINO_UNO_D2 = PF_15,
|
||||||
|
ARDUINO_UNO_D3 = PE_13,
|
||||||
|
ARDUINO_UNO_D4 = PF_14,
|
||||||
|
ARDUINO_UNO_D5 = PE_11,
|
||||||
|
ARDUINO_UNO_D6 = PE_9,
|
||||||
|
ARDUINO_UNO_D7 = PF_13,
|
||||||
|
ARDUINO_UNO_D8 = PF_12,
|
||||||
|
ARDUINO_UNO_D9 = PD_15,
|
||||||
|
ARDUINO_UNO_D10 = PD_14,
|
||||||
|
ARDUINO_UNO_D11 = STM32_D11_SPI_ETHERNET_PIN,
|
||||||
|
ARDUINO_UNO_D12 = PA_6,
|
||||||
|
ARDUINO_UNO_D13 = PA_5,
|
||||||
|
ARDUINO_UNO_D14 = PB_9,
|
||||||
|
ARDUINO_UNO_D15 = PB_8,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Arduino extension pins
|
||||||
|
A6 = PB_1,
|
||||||
|
A7 = PC_2,
|
||||||
|
A8 = PF_4,
|
||||||
|
|
||||||
|
D16 = PC_6,
|
||||||
|
D17 = PB_15,
|
||||||
|
D18 = PB_13,
|
||||||
|
D19 = PB_12,
|
||||||
|
D20 = PA_15,
|
||||||
|
D21 = PC_7,
|
||||||
|
D22 = PB_5,
|
||||||
|
D23 = PB_3,
|
||||||
|
D24 = PA_4,
|
||||||
|
D25 = PB_4,
|
||||||
|
D26 = PB_6,
|
||||||
|
D27 = PB_2,
|
||||||
|
D28 = PD_13,
|
||||||
|
D29 = PD_12,
|
||||||
|
D30 = PD_11,
|
||||||
|
D31 = PE_2,
|
||||||
|
D32 = PA_0,
|
||||||
|
D33 = PB_0,
|
||||||
|
D34 = PE_0,
|
||||||
|
D35 = PB_11,
|
||||||
|
D36 = PB_10,
|
||||||
|
D37 = PE_15,
|
||||||
|
D38 = PE_14,
|
||||||
|
D39 = PE_12,
|
||||||
|
D40 = PE_10,
|
||||||
|
D41 = PE_7,
|
||||||
|
D42 = PE_8,
|
||||||
|
D43 = PC_8,
|
||||||
|
D44 = PC_9,
|
||||||
|
D45 = PC_10,
|
||||||
|
D46 = PC_11,
|
||||||
|
D47 = PC_12,
|
||||||
|
D48 = PD_2,
|
||||||
|
D49 = PG_2,
|
||||||
|
D50 = PG_3,
|
||||||
|
D51 = PD_7,
|
||||||
|
D52 = PD_6,
|
||||||
|
D53 = PD_5,
|
||||||
|
D54 = PD_4,
|
||||||
|
D55 = PD_3,
|
||||||
|
D56 = PE_2,
|
||||||
|
D57 = PE_4,
|
||||||
|
D58 = PE_5,
|
||||||
|
D59 = PE_6,
|
||||||
|
D60 = PE_3,
|
||||||
|
D61 = PF_8,
|
||||||
|
D62 = PF_7,
|
||||||
|
D63 = PF_9,
|
||||||
|
D64 = PG_1,
|
||||||
|
D65 = PG_0,
|
||||||
|
D66 = PD_1,
|
||||||
|
D67 = PD_0,
|
||||||
|
D68 = PF_0,
|
||||||
|
D69 = PF_1,
|
||||||
|
D70 = PF_2,
|
||||||
|
D71 = PA_7,
|
||||||
|
|
||||||
|
// STDIO for console print
|
||||||
|
#ifdef MBED_CONF_TARGET_STDIO_UART_TX
|
||||||
|
CONSOLE_TX = MBED_CONF_TARGET_STDIO_UART_TX,
|
||||||
|
#else
|
||||||
|
CONSOLE_TX = PA_9,
|
||||||
|
#endif
|
||||||
|
#ifdef MBED_CONF_TARGET_STDIO_UART_RX
|
||||||
|
CONSOLE_RX = MBED_CONF_TARGET_STDIO_UART_RX,
|
||||||
|
#else
|
||||||
|
CONSOLE_RX = PA_10,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**** USB FS pins ****/
|
||||||
|
USB_OTG_FS_DM = PA_11,
|
||||||
|
USB_OTG_FS_DP = PA_12,
|
||||||
|
USB_OTG_FS_ID = PA_10,
|
||||||
|
USB_OTG_FS_SOF = PA_8,
|
||||||
|
USB_OTG_FS_VBUS = PA_9,
|
||||||
|
|
||||||
|
/**** USB HS pins ****/
|
||||||
|
USB_OTG_HS_DM = PB_14,
|
||||||
|
USB_OTG_HS_DP = PB_15,
|
||||||
|
USB_OTG_HS_ID = PB_12,
|
||||||
|
USB_OTG_HS_SOF = PA_4,
|
||||||
|
USB_OTG_HS_ULPI_CK = PA_5,
|
||||||
|
USB_OTG_HS_ULPI_D0 = PA_3,
|
||||||
|
USB_OTG_HS_ULPI_D1 = PB_0,
|
||||||
|
USB_OTG_HS_ULPI_D2 = PB_1,
|
||||||
|
USB_OTG_HS_ULPI_D3 = PB_10,
|
||||||
|
USB_OTG_HS_ULPI_D4 = PB_11,
|
||||||
|
USB_OTG_HS_ULPI_D5 = PB_12,
|
||||||
|
USB_OTG_HS_ULPI_D6 = PB_13,
|
||||||
|
USB_OTG_HS_ULPI_D7 = PB_5,
|
||||||
|
USB_OTG_HS_ULPI_DIR = PC_2,
|
||||||
|
USB_OTG_HS_ULPI_NXT = PC_3,
|
||||||
|
USB_OTG_HS_ULPI_STP = PC_0,
|
||||||
|
USB_OTG_HS_VBUS = PB_13,
|
||||||
|
|
||||||
|
/**** ETHERNET pins ****/
|
||||||
|
ETH_COL = PA_3,
|
||||||
|
ETH_CRS = PA_0,
|
||||||
|
ETH_CRS_DV = PA_7,
|
||||||
|
ETH_MDC = PC_1,
|
||||||
|
ETH_MDIO = PA_2,
|
||||||
|
ETH_PPS_OUT = PG_8,
|
||||||
|
ETH_PPS_OUT_ALT0 = PB_5,
|
||||||
|
ETH_REF_CLK = PA_1,
|
||||||
|
ETH_RXD0 = PC_4,
|
||||||
|
ETH_RXD1 = PC_5,
|
||||||
|
ETH_RXD2 = PB_0,
|
||||||
|
ETH_RXD3 = PB_1,
|
||||||
|
ETH_RX_CLK = PA_1,
|
||||||
|
ETH_RX_DV = PA_7,
|
||||||
|
ETH_RX_ER = PB_10,
|
||||||
|
ETH_TXD0 = PB_12,
|
||||||
|
ETH_TXD0_ALT0 = PG_13,
|
||||||
|
ETH_TXD1 = PB_13,
|
||||||
|
ETH_TXD1_ALT0 = PG_14,
|
||||||
|
ETH_TXD2 = PC_2,
|
||||||
|
ETH_TXD3 = PE_2,
|
||||||
|
ETH_TXD3_ALT0 = PB_8,
|
||||||
|
ETH_TX_CLK = PC_3,
|
||||||
|
ETH_TX_EN = PB_11,
|
||||||
|
ETH_TX_EN_ALT0 = PG_11,
|
||||||
|
|
||||||
|
/**** OSCILLATOR pins ****/
|
||||||
|
RCC_OSC32_IN = PC_14,
|
||||||
|
RCC_OSC32_OUT = PC_15,
|
||||||
|
RCC_OSC_IN = PH_0,
|
||||||
|
RCC_OSC_OUT = PH_1,
|
||||||
|
|
||||||
|
/**** DEBUG pins ****/
|
||||||
|
SYS_JTCK_SWCLK = PA_14,
|
||||||
|
SYS_JTDI = PA_15,
|
||||||
|
SYS_JTDO_SWO = PB_3,
|
||||||
|
SYS_JTMS_SWDIO = PA_13,
|
||||||
|
SYS_JTRST = PB_4,
|
||||||
|
SYS_TRACECLK = PE_2,
|
||||||
|
SYS_TRACED0 = PE_3,
|
||||||
|
SYS_TRACED0_ALT0 = PC_1,
|
||||||
|
SYS_TRACED0_ALT1 = PG_13,
|
||||||
|
SYS_TRACED1 = PE_4,
|
||||||
|
SYS_TRACED1_ALT0 = PC_8,
|
||||||
|
SYS_TRACED1_ALT1 = PG_14,
|
||||||
|
SYS_TRACED2 = PE_5,
|
||||||
|
SYS_TRACED2_ALT0 = PD_2,
|
||||||
|
SYS_TRACED3 = PE_6,
|
||||||
|
SYS_TRACED3_ALT0 = PC_12,
|
||||||
|
SYS_WKUP1 = PA_0,
|
||||||
|
SYS_WKUP2 = PA_2,
|
||||||
|
SYS_WKUP3 = PC_1,
|
||||||
|
SYS_WKUP4 = PC_13,
|
||||||
|
|
||||||
|
//F746 Module
|
||||||
|
EE_SCL = PB_8,
|
||||||
|
EE_SDA = PB_9,
|
||||||
|
|
||||||
|
OUT1 = PB_7,
|
||||||
|
OUT2 = PB_4,
|
||||||
|
OUT3 = PB_3,
|
||||||
|
OUT4 = PE_9,
|
||||||
|
OUT5 = PH_10,
|
||||||
|
|
||||||
|
IN1 = PA_5,
|
||||||
|
IN2 = PA_7,
|
||||||
|
IN3 = PB_1,
|
||||||
|
IN4 = PB_0,
|
||||||
|
|
||||||
|
RS4851_DIR = PG_12,
|
||||||
|
RS4851_RX = PC_7,
|
||||||
|
RS4851_TX = PC_6,
|
||||||
|
// Not connected
|
||||||
|
NC = (int) 0xFFFFFFFF
|
||||||
|
} PinName;
|
||||||
|
|
||||||
|
// Standardized LED and button names
|
||||||
|
#define LED1 PE_9 // LD1 [Green]
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
250
STM32F746xG.ld
Normal file
250
STM32F746xG.ld
Normal file
@@ -0,0 +1,250 @@
|
|||||||
|
/* Linker script to configure memory regions. */
|
||||||
|
/*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
******************************************************************************
|
||||||
|
* @attention
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016-2020 STMicroelectronics.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This software component is licensed by ST under BSD 3-Clause license,
|
||||||
|
* the "License"; You may not use this file except in compliance with the
|
||||||
|
* License. You may obtain a copy of the License at:
|
||||||
|
* opensource.org/licenses/BSD-3-Clause
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cmsis_nvic.h"
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(MBED_APP_START)
|
||||||
|
#define MBED_APP_START MBED_ROM_START
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBED_APP_SIZE)
|
||||||
|
#define MBED_APP_SIZE MBED_ROM_SIZE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
M_CRASH_DATA_RAM_SIZE = 0x100;
|
||||||
|
|
||||||
|
#if !defined(MBED_CONF_TARGET_BOOT_STACK_SIZE)
|
||||||
|
/* This value is normally defined by the tools
|
||||||
|
to 0x1000 for bare metal and 0x400 for RTOS */
|
||||||
|
#define MBED_CONF_TARGET_BOOT_STACK_SIZE 0x400
|
||||||
|
#endif
|
||||||
|
STACK_SIZE = MBED_CONF_TARGET_BOOT_STACK_SIZE;
|
||||||
|
|
||||||
|
#define MBED_VECTTABLE_RAM_SIZE (((NVIC_NUM_VECTORS * 4) + 7) & 0xFFFFFFF8)
|
||||||
|
#define MBED_RAM0_START (0x20010000 + MBED_VECTTABLE_RAM_SIZE)
|
||||||
|
#define MBED_RAM0_SIZE (0x3C000 - MBED_VECTTABLE_RAM_SIZE)
|
||||||
|
|
||||||
|
MEMORY
|
||||||
|
{
|
||||||
|
FLASH (rx) : ORIGIN = MBED_APP_START, LENGTH = MBED_APP_SIZE
|
||||||
|
RAM (rwx) : ORIGIN = MBED_RAM0_START, LENGTH = MBED_RAM0_SIZE
|
||||||
|
DTCM (rwx) : ORIGIN = 0x20040000, LENGTH = 16K
|
||||||
|
SPI_FLASH(r) : ORIGIN = 0x90000000, LENGTH = 1M
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Linker script to place sections and symbol values. Should be used together
|
||||||
|
* with other linker script that defines memory regions FLASH and RAM.
|
||||||
|
* It references following symbols, which must be defined in code:
|
||||||
|
* Reset_Handler : Entry of reset handler
|
||||||
|
*
|
||||||
|
* It defines following symbols, which code can use without definition:
|
||||||
|
* __exidx_start
|
||||||
|
* __exidx_end
|
||||||
|
* __etext
|
||||||
|
* __data_start__
|
||||||
|
* __preinit_array_start
|
||||||
|
* __preinit_array_end
|
||||||
|
* __init_array_start
|
||||||
|
* __init_array_end
|
||||||
|
* __fini_array_start
|
||||||
|
* __fini_array_end
|
||||||
|
* __data_end__
|
||||||
|
* __bss_start__
|
||||||
|
* __bss_end__
|
||||||
|
* __end__
|
||||||
|
* end
|
||||||
|
* __HeapLimit
|
||||||
|
* __StackLimit
|
||||||
|
* __StackTop
|
||||||
|
* __stack
|
||||||
|
* _estack
|
||||||
|
*/
|
||||||
|
ENTRY(Reset_Handler)
|
||||||
|
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
.dtcm_data_ram 0x20040000 (NOLOAD) :
|
||||||
|
{
|
||||||
|
. = ALIGN(4);
|
||||||
|
KEEP(*(.dtcm_data_ram))
|
||||||
|
} > DTCM
|
||||||
|
|
||||||
|
.text :
|
||||||
|
{
|
||||||
|
KEEP(*(.isr_vector))
|
||||||
|
*(.text*)
|
||||||
|
|
||||||
|
KEEP(*(.init))
|
||||||
|
KEEP(*(.fini))
|
||||||
|
|
||||||
|
/* .ctors */
|
||||||
|
*crtbegin.o(.ctors)
|
||||||
|
*crtbegin?.o(.ctors)
|
||||||
|
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
|
||||||
|
*(SORT(.ctors.*))
|
||||||
|
*(.ctors)
|
||||||
|
|
||||||
|
/* .dtors */
|
||||||
|
*crtbegin.o(.dtors)
|
||||||
|
*crtbegin?.o(.dtors)
|
||||||
|
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
|
||||||
|
*(SORT(.dtors.*))
|
||||||
|
*(.dtors)
|
||||||
|
|
||||||
|
*(.rodata*)
|
||||||
|
|
||||||
|
KEEP(*(.eh_frame*))
|
||||||
|
} > FLASH
|
||||||
|
|
||||||
|
.ARM.extab :
|
||||||
|
{
|
||||||
|
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
||||||
|
} > FLASH
|
||||||
|
|
||||||
|
__exidx_start = .;
|
||||||
|
.ARM.exidx :
|
||||||
|
{
|
||||||
|
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
||||||
|
} > FLASH
|
||||||
|
__exidx_end = .;
|
||||||
|
|
||||||
|
__etext = .;
|
||||||
|
_sidata = .;
|
||||||
|
|
||||||
|
.crash_data_ram :
|
||||||
|
{
|
||||||
|
. = ALIGN(8);
|
||||||
|
__CRASH_DATA_RAM__ = .;
|
||||||
|
__CRASH_DATA_RAM_START__ = .; /* Create a global symbol at data start */
|
||||||
|
KEEP(*(.keep.crash_data_ram))
|
||||||
|
*(.m_crash_data_ram) /* This is a user defined section */
|
||||||
|
. += M_CRASH_DATA_RAM_SIZE;
|
||||||
|
. = ALIGN(8);
|
||||||
|
__CRASH_DATA_RAM_END__ = .; /* Define a global symbol at data end */
|
||||||
|
} > RAM
|
||||||
|
|
||||||
|
.data : AT (__etext)
|
||||||
|
{
|
||||||
|
__data_start__ = .;
|
||||||
|
_sdata = .;
|
||||||
|
*(vtable)
|
||||||
|
*(.data*)
|
||||||
|
|
||||||
|
. = ALIGN(8);
|
||||||
|
/* preinit data */
|
||||||
|
PROVIDE_HIDDEN (__preinit_array_start = .);
|
||||||
|
KEEP(*(.preinit_array))
|
||||||
|
PROVIDE_HIDDEN (__preinit_array_end = .);
|
||||||
|
|
||||||
|
. = ALIGN(8);
|
||||||
|
/* init data */
|
||||||
|
PROVIDE_HIDDEN (__init_array_start = .);
|
||||||
|
KEEP(*(SORT(.init_array.*)))
|
||||||
|
KEEP(*(.init_array))
|
||||||
|
PROVIDE_HIDDEN (__init_array_end = .);
|
||||||
|
|
||||||
|
. = ALIGN(8);
|
||||||
|
/* finit data */
|
||||||
|
PROVIDE_HIDDEN (__fini_array_start = .);
|
||||||
|
KEEP(*(SORT(.fini_array.*)))
|
||||||
|
KEEP(*(.fini_array))
|
||||||
|
PROVIDE_HIDDEN (__fini_array_end = .);
|
||||||
|
|
||||||
|
KEEP(*(.jcr*))
|
||||||
|
. = ALIGN(8);
|
||||||
|
/* All data end */
|
||||||
|
__data_end__ = .;
|
||||||
|
_edata = .;
|
||||||
|
|
||||||
|
} > RAM
|
||||||
|
|
||||||
|
/* Uninitialized data section
|
||||||
|
* This region is not initialized by the C/C++ library and can be used to
|
||||||
|
* store state across soft reboots. */
|
||||||
|
.uninitialized (NOLOAD):
|
||||||
|
{
|
||||||
|
. = ALIGN(32);
|
||||||
|
__uninitialized_start = .;
|
||||||
|
*(.uninitialized)
|
||||||
|
KEEP(*(.keep.uninitialized))
|
||||||
|
. = ALIGN(32);
|
||||||
|
__uninitialized_end = .;
|
||||||
|
} > RAM
|
||||||
|
|
||||||
|
.bss :
|
||||||
|
{
|
||||||
|
. = ALIGN(8);
|
||||||
|
__bss_start__ = .;
|
||||||
|
_sbss = .;
|
||||||
|
*(.bss*)
|
||||||
|
*(COMMON)
|
||||||
|
. = ALIGN(8);
|
||||||
|
__bss_end__ = .;
|
||||||
|
_ebss = .;
|
||||||
|
} > RAM
|
||||||
|
|
||||||
|
.heap (COPY):
|
||||||
|
{
|
||||||
|
__end__ = .;
|
||||||
|
PROVIDE(end = .);
|
||||||
|
*(.heap*)
|
||||||
|
. = ORIGIN(RAM) + LENGTH(RAM) - STACK_SIZE;
|
||||||
|
__HeapLimit = .;
|
||||||
|
} > RAM
|
||||||
|
|
||||||
|
/* .stack_dummy section doesn't contains any symbols. It is only
|
||||||
|
* used for linker to calculate size of stack sections, and assign
|
||||||
|
* values to stack symbols later */
|
||||||
|
.stack_dummy (COPY):
|
||||||
|
{
|
||||||
|
*(.stack*)
|
||||||
|
} > RAM
|
||||||
|
|
||||||
|
ExtFlashSection :
|
||||||
|
{
|
||||||
|
*(ExtFlashSection ExtFlashSection.*)
|
||||||
|
*(.gnu.linkonce.r.*)
|
||||||
|
. = ALIGN(0x4);
|
||||||
|
} >SPI_FLASH
|
||||||
|
|
||||||
|
|
||||||
|
/* FontFlashSection :
|
||||||
|
{
|
||||||
|
*(FontFlashSection FontFlashSection.*)
|
||||||
|
*(.gnu.linkonce.r.*)
|
||||||
|
. = ALIGN(0x4);
|
||||||
|
} >SPI_FLASH
|
||||||
|
|
||||||
|
|
||||||
|
TextFlashSection :
|
||||||
|
{
|
||||||
|
*(TextFlashSection TextFlashSection.*)
|
||||||
|
*(.gnu.linkonce.r.*)
|
||||||
|
. = ALIGN(0x4);
|
||||||
|
} >SPI_FLASH
|
||||||
|
*/
|
||||||
|
/* Set stack top to end of RAM, and stack limit move down by
|
||||||
|
* size of stack_dummy section */
|
||||||
|
__StackTop = ORIGIN(RAM) + LENGTH(RAM);
|
||||||
|
_estack = __StackTop;
|
||||||
|
__StackLimit = __StackTop - STACK_SIZE;
|
||||||
|
PROVIDE(__stack = __StackTop);
|
||||||
|
|
||||||
|
/* Check if data + heap + stack exceeds RAM limit */
|
||||||
|
ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
||||||
|
}
|
||||||
100
bsp_init.c
Normal file
100
bsp_init.c
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
#include "bsp_init.h"
|
||||||
|
#include "stm32f7xx_ll_gpio.h"
|
||||||
|
#include "stm32f7xx_ll_bus.h"
|
||||||
|
#include "stdbool.h"
|
||||||
|
#include "stm32746g_discovery_qspi.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Set flash read protection.
|
||||||
|
* @param [in] state: Flash read protection state, true: enable protection, false: disable protection.
|
||||||
|
* @retval true: Successful operation.
|
||||||
|
* @retval false: Operation failed.
|
||||||
|
*/
|
||||||
|
bool SetFlashReadProtection(bool state)
|
||||||
|
{
|
||||||
|
FLASH_OBProgramInitTypeDef OptionsBytesStruct = {0};
|
||||||
|
HAL_FLASHEx_OBGetConfig(&OptionsBytesStruct);
|
||||||
|
|
||||||
|
if(state == true)
|
||||||
|
{
|
||||||
|
if(OptionsBytesStruct.RDPLevel == OB_RDP_LEVEL_0)
|
||||||
|
{
|
||||||
|
OptionsBytesStruct.OptionType = OPTIONBYTE_RDP;
|
||||||
|
OptionsBytesStruct.RDPLevel = OB_RDP_LEVEL_1;
|
||||||
|
|
||||||
|
HAL_FLASH_Unlock();
|
||||||
|
HAL_FLASH_OB_Unlock();
|
||||||
|
|
||||||
|
if(HAL_FLASHEx_OBProgram(&OptionsBytesStruct) != HAL_OK)
|
||||||
|
{
|
||||||
|
HAL_FLASH_OB_Lock();
|
||||||
|
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
HAL_FLASH_Lock();
|
||||||
|
HAL_FLASH_OB_Launch();
|
||||||
|
HAL_FLASH_OB_Lock();
|
||||||
|
NVIC_SystemReset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(OptionsBytesStruct.RDPLevel == OB_RDP_LEVEL_1)
|
||||||
|
{
|
||||||
|
OptionsBytesStruct.OptionType = OPTIONBYTE_RDP;
|
||||||
|
OptionsBytesStruct.RDPLevel = OB_RDP_LEVEL_0;
|
||||||
|
|
||||||
|
HAL_FLASH_OB_Unlock();
|
||||||
|
|
||||||
|
if(HAL_FLASHEx_OBProgram(&OptionsBytesStruct) != HAL_OK)
|
||||||
|
{
|
||||||
|
HAL_FLASH_OB_Lock();
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
HAL_FLASH_OB_Lock();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void TargetBSP_Init(void)
|
||||||
|
{
|
||||||
|
// CSP_QUADSPI_Init();
|
||||||
|
// CSP_QSPI_EnableMemoryMappedMode();
|
||||||
|
// SetFlashReadProtection(true);
|
||||||
|
LL_AHB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_CRC);
|
||||||
|
HAL_DBGMCU_EnableDBGStandbyMode();
|
||||||
|
HAL_DBGMCU_EnableDBGSleepMode();
|
||||||
|
HAL_DBGMCU_EnableDBGStopMode();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM2();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM3();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM4();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM5();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM6();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM7();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM12();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM13();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM14();
|
||||||
|
__HAL_DBGMCU_FREEZE_LPTIM1();
|
||||||
|
__HAL_DBGMCU_FREEZE_RTC();
|
||||||
|
__HAL_DBGMCU_FREEZE_WWDG();
|
||||||
|
__HAL_DBGMCU_FREEZE_IWDG();
|
||||||
|
__HAL_DBGMCU_FREEZE_I2C1_TIMEOUT();
|
||||||
|
__HAL_DBGMCU_FREEZE_I2C2_TIMEOUT();
|
||||||
|
__HAL_DBGMCU_FREEZE_I2C3_TIMEOUT();
|
||||||
|
__HAL_DBGMCU_FREEZE_CAN1();
|
||||||
|
__HAL_DBGMCU_FREEZE_CAN2();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM1();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM8();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM9();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM10();
|
||||||
|
__HAL_DBGMCU_FREEZE_TIM11();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
3
bsp_init.h
Normal file
3
bsp_init.h
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#include "stm32f7xx.h"
|
||||||
|
|
||||||
|
void TargetBSP_Init(void);
|
||||||
47
cmsis_nvic.h
Normal file
47
cmsis_nvic.h
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
******************************************************************************
|
||||||
|
* @attention
|
||||||
|
*
|
||||||
|
* <h2><center>© Copyright (c) 2016-2020 STMicroelectronics.
|
||||||
|
* All rights reserved.</center></h2>
|
||||||
|
*
|
||||||
|
* This software component is licensed by ST under BSD 3-Clause license,
|
||||||
|
* the "License"; You may not use this file except in compliance with the
|
||||||
|
* License. You may obtain a copy of the License at:
|
||||||
|
* opensource.org/licenses/BSD-3-Clause
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MBED_CMSIS_NVIC_H
|
||||||
|
#define MBED_CMSIS_NVIC_H
|
||||||
|
|
||||||
|
#if !defined(MBED_ROM_START)
|
||||||
|
#define MBED_ROM_START 0x8000000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBED_ROM_SIZE)
|
||||||
|
#define MBED_ROM_SIZE 0x80000 // 512 MB
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBED_RAM_START)
|
||||||
|
#define MBED_RAM_START 0x20010000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBED_RAM_SIZE)
|
||||||
|
#define MBED_RAM_SIZE 0x4000 // 256 KB
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBED_RAM1_START)
|
||||||
|
#define MBED_RAM1_START 0x20000000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(MBED_RAM1_SIZE)
|
||||||
|
#define MBED_RAM1_SIZE 0x10000 // 64 KB
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define NVIC_NUM_VECTORS 114
|
||||||
|
#define NVIC_RAM_VECTOR_ADDRESS MBED_RAM1_START
|
||||||
|
|
||||||
|
#endif
|
||||||
55
flash_data.h
Normal file
55
flash_data.h
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
*******************************************************************************
|
||||||
|
* Copyright (c) 2016, STMicroelectronics
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*******************************************************************************
|
||||||
|
*/
|
||||||
|
#ifndef MBED_FLASH_DATA_H
|
||||||
|
#define MBED_FLASH_DATA_H
|
||||||
|
|
||||||
|
#include "device.h"
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#if DEVICE_FLASH
|
||||||
|
|
||||||
|
/* Exported types ------------------------------------------------------------*/
|
||||||
|
/* Exported constants --------------------------------------------------------*/
|
||||||
|
/* Exported macro ------------------------------------------------------------*/
|
||||||
|
/* Flash size */
|
||||||
|
#define FLASH_SIZE (uint32_t) 0x100000
|
||||||
|
|
||||||
|
/* Base address of the Flash sectors Bank 1 */
|
||||||
|
#define ADDR_FLASH_SECTOR_0 ((uint32_t)0x08000000) /* Base @ of Sector 0, 32 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_1 ((uint32_t)0x08008000) /* Base @ of Sector 1, 32 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_2 ((uint32_t)0x08010000) /* Base @ of Sector 2, 32 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_3 ((uint32_t)0x08018000) /* Base @ of Sector 3, 32 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_4 ((uint32_t)0x08020000) /* Base @ of Sector 4, 128 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_5 ((uint32_t)0x08040000) /* Base @ of Sector 5, 256 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_6 ((uint32_t)0x08080000) /* Base @ of Sector 6, 256 Kbytes */
|
||||||
|
#define ADDR_FLASH_SECTOR_7 ((uint32_t)0x080C0000) /* Base @ of Sector 7, 256 Kbytes */
|
||||||
|
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
217
n25q128a.h
Normal file
217
n25q128a.h
Normal file
@@ -0,0 +1,217 @@
|
|||||||
|
/**
|
||||||
|
******************************************************************************
|
||||||
|
* @file n25q128a.h
|
||||||
|
* @author MCD Application Team
|
||||||
|
* @brief This file contains all the description of the N25Q128A QSPI memory.
|
||||||
|
******************************************************************************
|
||||||
|
* @attention
|
||||||
|
*
|
||||||
|
* <h2><center>© COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
* are permitted provided that the following conditions are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||||
|
#ifndef __N25Q128A_H
|
||||||
|
#define __N25Q128A_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Includes ------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
/** @addtogroup BSP
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @addtogroup Components
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @addtogroup n25q128a
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @defgroup N25Q128A_Exported_Types
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @defgroup N25Q128A_Exported_Constants
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief N25Q128A Configuration
|
||||||
|
*/
|
||||||
|
#define N25Q128A_FLASH_SIZE 0x1000000 /* 128 MBits => 16MBytes */
|
||||||
|
#define N25Q128A_SECTOR_SIZE 0x10000 /* 256 sectors of 64KBytes */
|
||||||
|
#define N25Q128A_SUBSECTOR_SIZE 0x1000 /* 4096 subsectors of 4kBytes */
|
||||||
|
#define N25Q128A_PAGE_SIZE 0x100 /* 65536 pages of 256 bytes */
|
||||||
|
|
||||||
|
#define N25Q128A_DUMMY_CYCLES_READ 8
|
||||||
|
#define N25Q128A_DUMMY_CYCLES_READ_QUAD 10
|
||||||
|
|
||||||
|
#define N25Q128A_BULK_ERASE_MAX_TIME 250000
|
||||||
|
#define N25Q128A_SECTOR_ERASE_MAX_TIME 3000
|
||||||
|
#define N25Q128A_SUBSECTOR_ERASE_MAX_TIME 800
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief N25Q128A Commands
|
||||||
|
*/
|
||||||
|
/* Reset Operations */
|
||||||
|
#define RESET_ENABLE_CMD 0x66
|
||||||
|
#define RESET_MEMORY_CMD 0x99
|
||||||
|
|
||||||
|
/* Identification Operations */
|
||||||
|
#define READ_ID_CMD 0x9E
|
||||||
|
#define READ_ID_CMD2 0x9F
|
||||||
|
#define MULTIPLE_IO_READ_ID_CMD 0xAF
|
||||||
|
#define READ_SERIAL_FLASH_DISCO_PARAM_CMD 0x5A
|
||||||
|
|
||||||
|
/* Read Operations */
|
||||||
|
#define READ_CMD 0x03
|
||||||
|
#define FAST_READ_CMD 0x0B
|
||||||
|
#define DUAL_OUT_FAST_READ_CMD 0x3B
|
||||||
|
#define DUAL_INOUT_FAST_READ_CMD 0xBB
|
||||||
|
#define QUAD_OUT_FAST_READ_CMD 0x6B
|
||||||
|
#define QUAD_INOUT_FAST_READ_CMD 0xEB
|
||||||
|
|
||||||
|
/* Write Operations */
|
||||||
|
#define WRITE_ENABLE_CMD 0x06
|
||||||
|
#define WRITE_DISABLE_CMD 0x04
|
||||||
|
|
||||||
|
/* Register Operations */
|
||||||
|
#define READ_STATUS_REG_CMD 0x05
|
||||||
|
#define WRITE_STATUS_REG_CMD 0x01
|
||||||
|
|
||||||
|
#define READ_LOCK_REG_CMD 0xE8
|
||||||
|
#define WRITE_LOCK_REG_CMD 0xE5
|
||||||
|
|
||||||
|
#define READ_FLAG_STATUS_REG_CMD 0x70
|
||||||
|
#define CLEAR_FLAG_STATUS_REG_CMD 0x50
|
||||||
|
|
||||||
|
#define READ_NONVOL_CFG_REG_CMD 0xB5
|
||||||
|
#define WRITE_NONVOL_CFG_REG_CMD 0xB1
|
||||||
|
|
||||||
|
#define READ_VOL_CFG_REG_CMD 0x85
|
||||||
|
#define WRITE_VOL_CFG_REG_CMD 0x81
|
||||||
|
|
||||||
|
#define READ_ENHANCED_VOL_CFG_REG_CMD 0x65
|
||||||
|
#define WRITE_ENHANCED_VOL_CFG_REG_CMD 0x61
|
||||||
|
|
||||||
|
/* Program Operations */
|
||||||
|
#define PAGE_PROG_CMD 0x02
|
||||||
|
#define DUAL_IN_FAST_PROG_CMD 0xA2
|
||||||
|
#define EXT_DUAL_IN_FAST_PROG_CMD 0xD2
|
||||||
|
#define QUAD_IN_FAST_PROG_CMD 0x32
|
||||||
|
#define EXT_QUAD_IN_FAST_PROG_CMD 0x12
|
||||||
|
|
||||||
|
/* Erase Operations */
|
||||||
|
#define SUBSECTOR_ERASE_CMD 0x20
|
||||||
|
#define SECTOR_ERASE_CMD 0xD8
|
||||||
|
#define BULK_ERASE_CMD 0xC7
|
||||||
|
|
||||||
|
#define PROG_ERASE_RESUME_CMD 0x7A
|
||||||
|
#define PROG_ERASE_SUSPEND_CMD 0x75
|
||||||
|
|
||||||
|
/* One-Time Programmable Operations */
|
||||||
|
#define READ_OTP_ARRAY_CMD 0x4B
|
||||||
|
#define PROG_OTP_ARRAY_CMD 0x42
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief N25Q128A Registers
|
||||||
|
*/
|
||||||
|
/* Status Register */
|
||||||
|
#define N25Q128A_SR_WIP ((uint8_t)0x01) /*!< Write in progress */
|
||||||
|
#define N25Q128A_SR_WREN ((uint8_t)0x02) /*!< Write enable latch */
|
||||||
|
#define N25Q128A_SR_BLOCKPR ((uint8_t)0x5C) /*!< Block protected against program and erase operations */
|
||||||
|
#define N25Q128A_SR_PRBOTTOM ((uint8_t)0x20) /*!< Protected memory area defined by BLOCKPR starts from top or bottom */
|
||||||
|
#define N25Q128A_SR_SRWREN ((uint8_t)0x80) /*!< Status register write enable/disable */
|
||||||
|
|
||||||
|
/* Nonvolatile Configuration Register */
|
||||||
|
#define N25Q128A_NVCR_LOCK ((uint16_t)0x0001) /*!< Lock nonvolatile configuration register */
|
||||||
|
#define N25Q128A_NVCR_DUAL ((uint16_t)0x0004) /*!< Dual I/O protocol */
|
||||||
|
#define N25Q128A_NVCR_QUAB ((uint16_t)0x0008) /*!< Quad I/O protocol */
|
||||||
|
#define N25Q128A_NVCR_RH ((uint16_t)0x0010) /*!< Reset/hold */
|
||||||
|
#define N25Q128A_NVCR_ODS ((uint16_t)0x01C0) /*!< Output driver strength */
|
||||||
|
#define N25Q128A_NVCR_XIP ((uint16_t)0x0E00) /*!< XIP mode at power-on reset */
|
||||||
|
#define N25Q128A_NVCR_NB_DUMMY ((uint16_t)0xF000) /*!< Number of dummy clock cycles */
|
||||||
|
|
||||||
|
/* Volatile Configuration Register */
|
||||||
|
#define N25Q128A_VCR_WRAP ((uint8_t)0x03) /*!< Wrap */
|
||||||
|
#define N25Q128A_VCR_XIP ((uint8_t)0x08) /*!< XIP */
|
||||||
|
#define N25Q128A_VCR_NB_DUMMY ((uint8_t)0xF0) /*!< Number of dummy clock cycles */
|
||||||
|
|
||||||
|
/* Enhanced Volatile Configuration Register */
|
||||||
|
#define N25Q128A_EVCR_ODS ((uint8_t)0x07) /*!< Output driver strength */
|
||||||
|
#define N25Q128A_EVCR_VPPA ((uint8_t)0x08) /*!< Vpp accelerator */
|
||||||
|
#define N25Q128A_EVCR_RH ((uint8_t)0x10) /*!< Reset/hold */
|
||||||
|
#define N25Q128A_EVCR_DUAL ((uint8_t)0x40) /*!< Dual I/O protocol */
|
||||||
|
#define N25Q128A_EVCR_QUAD ((uint8_t)0x80) /*!< Quad I/O protocol */
|
||||||
|
|
||||||
|
/* Flag Status Register */
|
||||||
|
#define N25Q128A_FSR_PRERR ((uint8_t)0x02) /*!< Protection error */
|
||||||
|
#define N25Q128A_FSR_PGSUS ((uint8_t)0x04) /*!< Program operation suspended */
|
||||||
|
#define N25Q128A_FSR_VPPERR ((uint8_t)0x08) /*!< Invalid voltage during program or erase */
|
||||||
|
#define N25Q128A_FSR_PGERR ((uint8_t)0x10) /*!< Program error */
|
||||||
|
#define N25Q128A_FSR_ERERR ((uint8_t)0x20) /*!< Erase error */
|
||||||
|
#define N25Q128A_FSR_ERSUS ((uint8_t)0x40) /*!< Erase operation suspended */
|
||||||
|
#define N25Q128A_FSR_READY ((uint8_t)0x80) /*!< Ready or command in progress */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @defgroup N25Q128A_Exported_Functions
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* __N25Q128A_H */
|
||||||
|
|
||||||
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||||
900
serial_api.c
Normal file
900
serial_api.c
Normal file
@@ -0,0 +1,900 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
*******************************************************************************
|
||||||
|
* Copyright (c) 2017, STMicroelectronics
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if DEVICE_SERIAL
|
||||||
|
|
||||||
|
#include "serial_api_hal.h"
|
||||||
|
|
||||||
|
// Possible choices of the LPUART_CLOCK_SOURCE configuration set in json file
|
||||||
|
#define USE_LPUART_CLK_LSE 0x01
|
||||||
|
#define USE_LPUART_CLK_PCLK1 0x02
|
||||||
|
#define USE_LPUART_CLK_HSI 0x04
|
||||||
|
|
||||||
|
int stdio_uart_inited = 0; // used in platform/mbed_board.c and platform/mbed_retarget.cpp
|
||||||
|
serial_t stdio_uart;
|
||||||
|
|
||||||
|
extern UART_HandleTypeDef uart_handlers[];
|
||||||
|
extern uint32_t serial_irq_ids[];
|
||||||
|
|
||||||
|
// Utility functions
|
||||||
|
HAL_StatusTypeDef init_uart(serial_t *obj);
|
||||||
|
|
||||||
|
int8_t get_uart_index(UARTName uart_name);
|
||||||
|
|
||||||
|
#if STATIC_PINMAP_READY
|
||||||
|
#define SERIAL_INIT_DIRECT serial_init_direct
|
||||||
|
void serial_init_direct(serial_t *obj, const serial_pinmap_t *pinmap)
|
||||||
|
#else
|
||||||
|
#define SERIAL_INIT_DIRECT _serial_init_direct
|
||||||
|
|
||||||
|
static void _serial_init_direct(serial_t *obj, const serial_pinmap_t *pinmap)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
|
||||||
|
// Get the peripheral name (UART_1, UART_2, ...) from the pin and assign it to the object
|
||||||
|
obj_s->uart = (UARTName) pinmap->peripheral;
|
||||||
|
MBED_ASSERT(obj_s->uart != (UARTName) NC);
|
||||||
|
|
||||||
|
// Reset and enable clock
|
||||||
|
#if defined(USART1_BASE)
|
||||||
|
if (obj_s->uart == UART_1) {
|
||||||
|
__HAL_RCC_USART1_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined (USART2_BASE)
|
||||||
|
if (obj_s->uart == UART_2) {
|
||||||
|
__HAL_RCC_USART2_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART3_BASE)
|
||||||
|
if (obj_s->uart == UART_3) {
|
||||||
|
__HAL_RCC_USART3_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART4_BASE)
|
||||||
|
if (obj_s->uart == UART_4) {
|
||||||
|
__HAL_RCC_UART4_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART4_BASE)
|
||||||
|
if (obj_s->uart == UART_4) {
|
||||||
|
__HAL_RCC_USART4_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART5_BASE)
|
||||||
|
if (obj_s->uart == UART_5) {
|
||||||
|
__HAL_RCC_UART5_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART5_BASE)
|
||||||
|
if (obj_s->uart == UART_5) {
|
||||||
|
__HAL_RCC_USART5_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART6_BASE)
|
||||||
|
if (obj_s->uart == UART_6) {
|
||||||
|
__HAL_RCC_USART6_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART7_BASE)
|
||||||
|
if (obj_s->uart == UART_7) {
|
||||||
|
__HAL_RCC_UART7_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART7_BASE)
|
||||||
|
if (obj_s->uart == UART_7) {
|
||||||
|
__HAL_RCC_USART7_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART8_BASE)
|
||||||
|
if (obj_s->uart == UART_8) {
|
||||||
|
__HAL_RCC_UART8_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART8_BASE)
|
||||||
|
if (obj_s->uart == UART_8) {
|
||||||
|
__HAL_RCC_USART8_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART9_BASE)
|
||||||
|
if (obj_s->uart == UART_9) {
|
||||||
|
__HAL_RCC_UART9_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART10_BASE)
|
||||||
|
if (obj_s->uart == UART_10) {
|
||||||
|
__HAL_RCC_UART10_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(LPUART1_BASE)
|
||||||
|
if (obj_s->uart == LPUART_1) {
|
||||||
|
__HAL_RCC_LPUART1_CLK_ENABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Assign serial object index
|
||||||
|
obj_s->index = get_uart_index(obj_s->uart);
|
||||||
|
MBED_ASSERT(obj_s->index >= 0);
|
||||||
|
|
||||||
|
// Configure UART pins
|
||||||
|
pin_function(pinmap->tx_pin, pinmap->tx_function);
|
||||||
|
pin_mode(pinmap->tx_pin, PullUp);
|
||||||
|
pin_function(pinmap->rx_pin, pinmap->rx_function);
|
||||||
|
pin_mode(pinmap->rx_pin, PullUp);
|
||||||
|
|
||||||
|
// Configure UART
|
||||||
|
obj_s->baudrate = 9600; // baudrate default value
|
||||||
|
if (pinmap->stdio_config) {
|
||||||
|
#if MBED_CONF_PLATFORM_STDIO_BAUD_RATE
|
||||||
|
obj_s->baudrate = MBED_CONF_PLATFORM_STDIO_BAUD_RATE; // baudrate takes value from platform/mbed_lib.json
|
||||||
|
#endif /* MBED_CONF_PLATFORM_STDIO_BAUD_RATE */
|
||||||
|
} else {
|
||||||
|
#if MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE
|
||||||
|
obj_s->baudrate = MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE; // baudrate takes value from platform/mbed_lib.json
|
||||||
|
#endif /* MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE */
|
||||||
|
}
|
||||||
|
obj_s->databits = UART_WORDLENGTH_8B;
|
||||||
|
obj_s->stopbits = UART_STOPBITS_1;
|
||||||
|
obj_s->parity = UART_PARITY_NONE;
|
||||||
|
|
||||||
|
#if DEVICE_SERIAL_FC
|
||||||
|
obj_s->hw_flow_ctl = UART_HWCONTROL_NONE;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
obj_s->pin_tx = pinmap->tx_pin;
|
||||||
|
obj_s->pin_rx = pinmap->rx_pin;
|
||||||
|
|
||||||
|
init_uart(
|
||||||
|
obj); /* init_uart will be called again in serial_baud function, so don't worry if init_uart returns HAL_ERROR */
|
||||||
|
|
||||||
|
// For stdio management in platform/mbed_board.c and platform/mbed_retarget.cpp
|
||||||
|
if (pinmap->stdio_config) {
|
||||||
|
stdio_uart_inited = 1;
|
||||||
|
memcpy(&stdio_uart, obj, sizeof(serial_t));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_init(serial_t *obj, PinName tx, PinName rx) {
|
||||||
|
uint32_t uart_tx = pinmap_peripheral(tx, PinMap_UART_TX);
|
||||||
|
uint32_t uart_rx = pinmap_peripheral(rx, PinMap_UART_RX);
|
||||||
|
|
||||||
|
int peripheral = (int) pinmap_merge(uart_tx, uart_rx);
|
||||||
|
|
||||||
|
int tx_function = (int) pinmap_find_function(tx, PinMap_UART_TX);
|
||||||
|
int rx_function = (int) pinmap_find_function(rx, PinMap_UART_RX);
|
||||||
|
|
||||||
|
uint8_t stdio_config = false;
|
||||||
|
|
||||||
|
if ((tx == CONSOLE_TX) || (rx == CONSOLE_RX)) {
|
||||||
|
stdio_config = true;
|
||||||
|
} else {
|
||||||
|
if (uart_tx == pinmap_peripheral(CONSOLE_TX, PinMap_UART_TX)) {
|
||||||
|
error("Error: new serial object is using same UART as STDIO");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const serial_pinmap_t explicit_uart_pinmap = {peripheral, tx, tx_function, rx, rx_function, stdio_config};
|
||||||
|
|
||||||
|
SERIAL_INIT_DIRECT(obj, &explicit_uart_pinmap);
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_free(serial_t *obj) {
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
|
||||||
|
// Reset UART and disable clock
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
|
||||||
|
}
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
#if defined(USART1_BASE)
|
||||||
|
if (obj_s->uart == UART_1) {
|
||||||
|
__HAL_RCC_USART1_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART1_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART1_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART2_BASE)
|
||||||
|
if (obj_s->uart == UART_2) {
|
||||||
|
__HAL_RCC_USART2_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART2_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART2_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART3_BASE)
|
||||||
|
if (obj_s->uart == UART_3) {
|
||||||
|
__HAL_RCC_USART3_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART3_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART3_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART4_BASE)
|
||||||
|
if (obj_s->uart == UART_4) {
|
||||||
|
__HAL_RCC_UART4_FORCE_RESET();
|
||||||
|
__HAL_RCC_UART4_RELEASE_RESET();
|
||||||
|
__HAL_RCC_UART4_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART4_BASE)
|
||||||
|
if (obj_s->uart == UART_4) {
|
||||||
|
__HAL_RCC_USART4_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART4_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART4_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART5_BASE)
|
||||||
|
if (obj_s->uart == UART_5) {
|
||||||
|
__HAL_RCC_UART5_FORCE_RESET();
|
||||||
|
__HAL_RCC_UART5_RELEASE_RESET();
|
||||||
|
__HAL_RCC_UART5_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART5_BASE)
|
||||||
|
if (obj_s->uart == UART_5) {
|
||||||
|
__HAL_RCC_USART5_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART5_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART5_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART6_BASE)
|
||||||
|
if (obj_s->uart == UART_6) {
|
||||||
|
__HAL_RCC_USART6_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART6_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART6_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART7_BASE)
|
||||||
|
if (obj_s->uart == UART_7) {
|
||||||
|
__HAL_RCC_UART7_FORCE_RESET();
|
||||||
|
__HAL_RCC_UART7_RELEASE_RESET();
|
||||||
|
__HAL_RCC_UART7_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART7_BASE)
|
||||||
|
if (obj_s->uart == UART_7) {
|
||||||
|
__HAL_RCC_USART7_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART7_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART7_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART8_BASE)
|
||||||
|
if (obj_s->uart == UART_8) {
|
||||||
|
__HAL_RCC_UART8_FORCE_RESET();
|
||||||
|
__HAL_RCC_UART8_RELEASE_RESET();
|
||||||
|
__HAL_RCC_UART8_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART8_BASE)
|
||||||
|
if (obj_s->uart == UART_8) {
|
||||||
|
__HAL_RCC_USART8_FORCE_RESET();
|
||||||
|
__HAL_RCC_USART8_RELEASE_RESET();
|
||||||
|
__HAL_RCC_USART8_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART9_BASE)
|
||||||
|
if (obj_s->uart == UART_9) {
|
||||||
|
__HAL_RCC_UART9_FORCE_RESET();
|
||||||
|
__HAL_RCC_UART9_RELEASE_RESET();
|
||||||
|
__HAL_RCC_UART9_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART10_BASE)
|
||||||
|
if (obj_s->uart == UART_10) {
|
||||||
|
__HAL_RCC_UART10_FORCE_RESET();
|
||||||
|
__HAL_RCC_UART10_RELEASE_RESET();
|
||||||
|
__HAL_RCC_UART10_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(LPUART1_BASE)
|
||||||
|
if (obj_s->uart == LPUART_1) {
|
||||||
|
__HAL_RCC_LPUART1_FORCE_RESET();
|
||||||
|
__HAL_RCC_LPUART1_RELEASE_RESET();
|
||||||
|
__HAL_RCC_LPUART1_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
|
||||||
|
// Configure GPIOs back to reset value
|
||||||
|
pin_function(obj_s->pin_tx, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0));
|
||||||
|
pin_function(obj_s->pin_rx, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0));
|
||||||
|
#if DEVICE_SERIAL_FC
|
||||||
|
if ((obj_s->hw_flow_ctl == UART_HWCONTROL_RTS) || (obj_s->hw_flow_ctl == UART_HWCONTROL_RTS_CTS)) {
|
||||||
|
pin_function(obj_s->pin_rts, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0));
|
||||||
|
}
|
||||||
|
if ((obj_s->hw_flow_ctl == UART_HWCONTROL_CTS) || (obj_s->hw_flow_ctl == UART_HWCONTROL_RTS_CTS)) {
|
||||||
|
pin_function(obj_s->pin_cts, STM_PIN_DATA(STM_MODE_ANALOG, GPIO_NOPULL, 0));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
serial_irq_ids[obj_s->index] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_baud(serial_t *obj, int baudrate) {
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
|
||||||
|
obj_s->baudrate = baudrate;
|
||||||
|
|
||||||
|
#if defined(LPUART1_BASE)
|
||||||
|
/* Note that LPUART clock source must be in the range [3 x baud rate, 4096 x baud rate], check Ref Manual */
|
||||||
|
if (obj_s->uart == LPUART_1) {
|
||||||
|
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
||||||
|
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LPUART1;
|
||||||
|
#if ((MBED_CONF_TARGET_LPUART_CLOCK_SOURCE) & USE_LPUART_CLK_LSE)
|
||||||
|
if (baudrate <= 9600) {
|
||||||
|
// Enable LSE in case it is not already done
|
||||||
|
if (!__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY)) {
|
||||||
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
||||||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE;
|
||||||
|
RCC_OscInitStruct.LSEState = RCC_LSE_ON;
|
||||||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_OFF;
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
|
||||||
|
}
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
HAL_RCC_OscConfig(&RCC_OscInitStruct);
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
}
|
||||||
|
// Keep it to verify if HAL_RCC_OscConfig didn't exit with a timeout
|
||||||
|
if (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY)) {
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
|
||||||
|
}
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
PeriphClkInitStruct.Lpuart1ClockSelection = RCC_LPUART1CLKSOURCE_LSE;
|
||||||
|
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
if (init_uart(obj) == HAL_OK) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#if ((MBED_CONF_TARGET_LPUART_CLOCK_SOURCE) & USE_LPUART_CLK_PCLK1)
|
||||||
|
PeriphClkInitStruct.Lpuart1ClockSelection = RCC_LPUART1CLKSOURCE_PCLK1;
|
||||||
|
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
|
||||||
|
if (init_uart(obj) == HAL_OK) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#if ((MBED_CONF_TARGET_LPUART_CLOCK_SOURCE) & USE_LPUART_CLK_HSI)
|
||||||
|
// Enable HSI in case it is not already done
|
||||||
|
if (!__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY)) {
|
||||||
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
||||||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
|
||||||
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
||||||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_OFF;
|
||||||
|
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
|
||||||
|
}
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
HAL_RCC_OscConfig(&RCC_OscInitStruct);
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
}
|
||||||
|
// Keep it to verify if HAL_RCC_OscConfig didn't exit with a timeout
|
||||||
|
if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY)) {
|
||||||
|
PeriphClkInitStruct.Lpuart1ClockSelection = RCC_LPUART1CLKSOURCE_HSI;
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
|
||||||
|
}
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
if (init_uart(obj) == HAL_OK) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
// Last chance using SYSCLK
|
||||||
|
PeriphClkInitStruct.Lpuart1ClockSelection = RCC_LPUART1CLKSOURCE_SYSCLK;
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
|
||||||
|
}
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
|
||||||
|
#if defined(DUAL_CORE) && (TARGET_STM32H7)
|
||||||
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
|
||||||
|
#endif /* DUAL_CORE */
|
||||||
|
}
|
||||||
|
#endif /* LPUART1_BASE */
|
||||||
|
|
||||||
|
if (init_uart(obj) != HAL_OK) {
|
||||||
|
debug("Cannot initialize UART with baud rate %u\n", baudrate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_format(serial_t *obj, int data_bits, SerialParity parity, int stop_bits) {
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
|
||||||
|
switch (parity) {
|
||||||
|
case ParityOdd:
|
||||||
|
obj_s->parity = UART_PARITY_ODD;
|
||||||
|
break;
|
||||||
|
case ParityEven:
|
||||||
|
obj_s->parity = UART_PARITY_EVEN;
|
||||||
|
break;
|
||||||
|
default: // ParityNone
|
||||||
|
case ParityForced0: // unsupported!
|
||||||
|
case ParityForced1: // unsupported!
|
||||||
|
obj_s->parity = UART_PARITY_NONE;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (data_bits) {
|
||||||
|
case 7:
|
||||||
|
if (parity != UART_PARITY_NONE) {
|
||||||
|
obj_s->databits = UART_WORDLENGTH_8B;
|
||||||
|
} else {
|
||||||
|
#if defined UART_WORDLENGTH_7B
|
||||||
|
obj_s->databits = UART_WORDLENGTH_7B;
|
||||||
|
#else
|
||||||
|
error("7-bit data format without parity is not supported");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 8:
|
||||||
|
if (parity != UART_PARITY_NONE) {
|
||||||
|
obj_s->databits = UART_WORDLENGTH_9B;
|
||||||
|
} else {
|
||||||
|
obj_s->databits = UART_WORDLENGTH_8B;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
if (parity != UART_PARITY_NONE) {
|
||||||
|
error("Parity is not supported with 9-bit data format");
|
||||||
|
} else {
|
||||||
|
obj_s->databits = UART_WORDLENGTH_9B;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
error("Only 7, 8 or 9-bit data formats are supported");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stop_bits == 2) {
|
||||||
|
obj_s->stopbits = UART_STOPBITS_2;
|
||||||
|
} else {
|
||||||
|
obj_s->stopbits = UART_STOPBITS_1;
|
||||||
|
}
|
||||||
|
|
||||||
|
init_uart(obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
const PinMap *serial_tx_pinmap() {
|
||||||
|
return PinMap_UART_TX;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PinMap *serial_rx_pinmap() {
|
||||||
|
return PinMap_UART_RX;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PinMap *serial_cts_pinmap() {
|
||||||
|
#if !DEVICE_SERIAL_FC
|
||||||
|
static const PinMap PinMap_UART_CTS[] = {
|
||||||
|
{NC, NC, 0}
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return PinMap_UART_CTS;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PinMap *serial_rts_pinmap() {
|
||||||
|
#if !DEVICE_SERIAL_FC
|
||||||
|
static const PinMap PinMap_UART_RTS[] = {
|
||||||
|
{NC, NC, 0}
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return PinMap_UART_RTS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* READ/WRITE
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
int serial_readable(serial_t *obj) {
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
UART_HandleTypeDef *huart = &uart_handlers[obj_s->index];
|
||||||
|
/* To avoid a target blocking case, let's check for
|
||||||
|
* possible OVERRUN error and discard it
|
||||||
|
*/
|
||||||
|
if (__HAL_UART_GET_FLAG(huart, UART_FLAG_ORE)) {
|
||||||
|
__HAL_UART_CLEAR_OREFLAG(huart);
|
||||||
|
}
|
||||||
|
// Check if data is received
|
||||||
|
return (__HAL_UART_GET_FLAG(huart, UART_FLAG_RXNE) != RESET) ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int serial_writable(serial_t *obj) {
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
UART_HandleTypeDef *huart = &uart_handlers[obj_s->index];
|
||||||
|
|
||||||
|
// Check if data is transmitted
|
||||||
|
return (__HAL_UART_GET_FLAG(huart, UART_FLAG_TC) != RESET) ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_pinout_tx(PinName tx) {
|
||||||
|
pinmap_pinout(tx, PinMap_UART_TX);
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_break_clear(serial_t *obj) {
|
||||||
|
(void) obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* UTILITY FUNCTIONS
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
HAL_StatusTypeDef init_uart(serial_t *obj) {
|
||||||
|
struct serial_s *obj_s = SERIAL_S(obj);
|
||||||
|
UART_HandleTypeDef *huart = &uart_handlers[obj_s->index];
|
||||||
|
huart->Instance = (USART_TypeDef *) (obj_s->uart);
|
||||||
|
|
||||||
|
huart->Init.BaudRate = obj_s->baudrate;
|
||||||
|
huart->Init.WordLength = obj_s->databits;
|
||||||
|
huart->Init.StopBits = obj_s->stopbits;
|
||||||
|
huart->Init.Parity = obj_s->parity;
|
||||||
|
#if DEVICE_SERIAL_FC
|
||||||
|
huart->Init.HwFlowCtl = obj_s->hw_flow_ctl;
|
||||||
|
#else
|
||||||
|
huart->Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
||||||
|
#endif
|
||||||
|
huart->Init.OverSampling = UART_OVERSAMPLING_16;
|
||||||
|
huart->TxXferCount = 0;
|
||||||
|
huart->TxXferSize = 0;
|
||||||
|
huart->RxXferCount = 0;
|
||||||
|
huart->RxXferSize = 0;
|
||||||
|
#if defined(UART_ONE_BIT_SAMPLE_DISABLE) // F0/F3/F7/G0/H7/L0/L4/L5/WB
|
||||||
|
huart->Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
|
||||||
|
#endif
|
||||||
|
#if defined(UART_PRESCALER_DIV1) // G0/H7/L4/L5/WB
|
||||||
|
huart->Init.ClockPrescaler = UART_PRESCALER_DIV1;
|
||||||
|
#endif
|
||||||
|
#if defined(UART_ADVFEATURE_NO_INIT) // F0/F3/F7/G0/H7/L0/L4//5/WB
|
||||||
|
huart->AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
|
||||||
|
#endif
|
||||||
|
#if defined(UART_FIFOMODE_DISABLE) // G0/H7/L4/L5/WB
|
||||||
|
huart->FifoMode = UART_FIFOMODE_DISABLE;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (obj_s->pin_rx == NC) {
|
||||||
|
huart->Init.Mode = UART_MODE_TX;
|
||||||
|
} else if (obj_s->pin_tx == NC) {
|
||||||
|
huart->Init.Mode = UART_MODE_RX;
|
||||||
|
} else {
|
||||||
|
huart->Init.Mode = UART_MODE_TX_RX;
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined(LPUART1_BASE)
|
||||||
|
if (huart->Instance == LPUART1) {
|
||||||
|
if (obj_s->baudrate <= 9600) {
|
||||||
|
#if ((MBED_CONF_TARGET_LPUART_CLOCK_SOURCE) & USE_LPUART_CLK_LSE) && defined(USART_CR3_UCESM)
|
||||||
|
HAL_UARTEx_EnableClockStopMode(huart);
|
||||||
|
#endif
|
||||||
|
HAL_UARTEx_EnableStopMode(huart);
|
||||||
|
} else {
|
||||||
|
#if defined(USART_CR3_UCESM)
|
||||||
|
HAL_UARTEx_DisableClockStopMode(huart);
|
||||||
|
#endif
|
||||||
|
HAL_UARTEx_DisableStopMode(huart);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*USART6 неправильно разведен на плате аппликатора!!!
|
||||||
|
поэтому программно меняем пины между собой
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (huart->Instance == USART6) {
|
||||||
|
huart->AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_SWAP_INIT;
|
||||||
|
huart->AdvancedInit.Swap = UART_ADVFEATURE_SWAP_ENABLE;
|
||||||
|
huart->Init.Mode = UART_MODE_TX_RX;
|
||||||
|
huart->Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
||||||
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
||||||
|
|
||||||
|
/**USART6 GPIO Configuration
|
||||||
|
PC7 ------> USART6_RX
|
||||||
|
PC6 ------> USART6_TX
|
||||||
|
*/
|
||||||
|
// GPIO_InitStruct.Pin = GPIO_PIN_7;
|
||||||
|
// GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
||||||
|
// GPIO_InitStruct.Pull = GPIO_NOPULL;
|
||||||
|
// GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
||||||
|
// GPIO_InitStruct.Alternate = GPIO_AF8_USART6;
|
||||||
|
// HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
||||||
|
//
|
||||||
|
// GPIO_InitStruct.Pin = GPIO_PIN_6;
|
||||||
|
// GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
||||||
|
// GPIO_InitStruct.Pull = GPIO_PULLUP;
|
||||||
|
// GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
||||||
|
// GPIO_InitStruct.Alternate = GPIO_AF8_USART6;
|
||||||
|
// HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
||||||
|
}
|
||||||
|
|
||||||
|
return HAL_UART_Init(huart);
|
||||||
|
}
|
||||||
|
|
||||||
|
int8_t get_uart_index(UARTName uart_name) {
|
||||||
|
uint8_t index = 0;
|
||||||
|
|
||||||
|
#if defined(USART1_BASE)
|
||||||
|
if (uart_name == UART_1) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART2_BASE)
|
||||||
|
if (uart_name == UART_2) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART3_BASE)
|
||||||
|
if (uart_name == UART_3) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART4_BASE)
|
||||||
|
if (uart_name == UART_4) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART4_BASE)
|
||||||
|
if (uart_name == UART_4) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART5_BASE)
|
||||||
|
if (uart_name == UART_5) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART5_BASE)
|
||||||
|
if (uart_name == UART_5) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART6_BASE)
|
||||||
|
if (uart_name == UART_6) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART7_BASE)
|
||||||
|
if (uart_name == UART_7) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART7_BASE)
|
||||||
|
if (uart_name == UART_7) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART8_BASE)
|
||||||
|
if (uart_name == UART_8) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART8_BASE)
|
||||||
|
if (uart_name == UART_8) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART9_BASE)
|
||||||
|
if (uart_name == UART_9) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART10_BASE)
|
||||||
|
if (uart_name == UART_10) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(LPUART1_BASE)
|
||||||
|
if (uart_name == LPUART_1) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Function used to protect deep sleep while a serial transmission is on-going.
|
||||||
|
.* Returns 1 if there is at least 1 serial instance with an on-going transfer
|
||||||
|
* and 0 otherwise.
|
||||||
|
*/
|
||||||
|
int serial_is_tx_ongoing(void) {
|
||||||
|
int TxOngoing = 0;
|
||||||
|
|
||||||
|
#if defined(USART1_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART1) && !LL_USART_IsActiveFlag_TC(USART1)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART2_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART2) && !LL_USART_IsActiveFlag_TC(USART2)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART3_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART3) && !LL_USART_IsActiveFlag_TC(USART3)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART4_BASE)
|
||||||
|
if (LL_USART_IsEnabled(UART4) && !LL_USART_IsActiveFlag_TC(UART4)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART4_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART4) && !LL_USART_IsActiveFlag_TC(USART4)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART5_BASE)
|
||||||
|
if (LL_USART_IsEnabled(UART5) && !LL_USART_IsActiveFlag_TC(UART5)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART5_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART5) && !LL_USART_IsActiveFlag_TC(USART5)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART6_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART6) && !LL_USART_IsActiveFlag_TC(USART6)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART7_BASE)
|
||||||
|
if (LL_USART_IsEnabled(UART7) && !LL_USART_IsActiveFlag_TC(UART7)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART7_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART7) && !LL_USART_IsActiveFlag_TC(USART7)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART8_BASE)
|
||||||
|
if (LL_USART_IsEnabled(UART8) && !LL_USART_IsActiveFlag_TC(UART8)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USART8_BASE)
|
||||||
|
if (LL_USART_IsEnabled(USART8) && !LL_USART_IsActiveFlag_TC(USART8)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART9_BASE)
|
||||||
|
if (LL_USART_IsEnabled(UART9) && !LL_USART_IsActiveFlag_TC(UART9)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(UART10_BASE)
|
||||||
|
if (LL_USART_IsEnabled(UART10) && !LL_USART_IsActiveFlag_TC(UART10)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(LPUART1_BASE)
|
||||||
|
if (LL_USART_IsEnabled(LPUART1) && !LL_USART_IsActiveFlag_TC(LPUART1)) {
|
||||||
|
TxOngoing |= 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return TxOngoing;
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
int serial_is_tx_ongoing(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* DEVICE_SERIAL */
|
||||||
571
startup_stm32f746xx.S
Normal file
571
startup_stm32f746xx.S
Normal file
@@ -0,0 +1,571 @@
|
|||||||
|
/**
|
||||||
|
******************************************************************************
|
||||||
|
* @file startup_stm32f746xx.s
|
||||||
|
* @author MCD Application Team
|
||||||
|
* @brief STM32F746xx Devices vector table for GCC based toolchain.
|
||||||
|
* This module performs:
|
||||||
|
* - Set the initial SP
|
||||||
|
* - Set the initial PC == Reset_Handler,
|
||||||
|
* - Set the vector table entries with the exceptions ISR address
|
||||||
|
* - Branches to main in the C library (which eventually
|
||||||
|
* calls main()).
|
||||||
|
* After Reset the Cortex-M7 processor is in Thread mode,
|
||||||
|
* priority is Privileged, and the Stack is set to Main.
|
||||||
|
******************************************************************************
|
||||||
|
* @attention
|
||||||
|
*
|
||||||
|
* <h2><center>© Copyright (c) 2016 STMicroelectronics.
|
||||||
|
* All rights reserved.</center></h2>
|
||||||
|
*
|
||||||
|
* This software component is licensed by ST under BSD 3-Clause license,
|
||||||
|
* the "License"; You may not use this file except in compliance with the
|
||||||
|
* License. You may obtain a copy of the License at:
|
||||||
|
* opensource.org/licenses/BSD-3-Clause
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
.syntax unified
|
||||||
|
.cpu cortex-m7
|
||||||
|
.fpu softvfp
|
||||||
|
.thumb
|
||||||
|
|
||||||
|
.global g_pfnVectors
|
||||||
|
.global Default_Handler
|
||||||
|
|
||||||
|
/* start address for the initialization values of the .data section.
|
||||||
|
defined in linker script */
|
||||||
|
.word _sidata
|
||||||
|
/* start address for the .data section. defined in linker script */
|
||||||
|
.word _sdata
|
||||||
|
/* end address for the .data section. defined in linker script */
|
||||||
|
.word _edata
|
||||||
|
/* start address for the .bss section. defined in linker script */
|
||||||
|
.word _sbss
|
||||||
|
/* end address for the .bss section. defined in linker script */
|
||||||
|
.word _ebss
|
||||||
|
/* stack used for SystemInit_ExtMemCtl; always internal RAM used */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This is the code that gets called when the processor first
|
||||||
|
* starts execution following a reset event. Only the absolutely
|
||||||
|
* necessary set is performed, after which the application
|
||||||
|
* supplied main() routine is called.
|
||||||
|
* @param None
|
||||||
|
* @retval : None
|
||||||
|
*/
|
||||||
|
|
||||||
|
.section .text.Reset_Handler
|
||||||
|
.weak Reset_Handler
|
||||||
|
.type Reset_Handler, %function
|
||||||
|
Reset_Handler:
|
||||||
|
ldr sp, =_estack /* set stack pointer */
|
||||||
|
|
||||||
|
/* Copy the data segment initializers from flash to SRAM */
|
||||||
|
movs r1, #0
|
||||||
|
b LoopCopyDataInit
|
||||||
|
|
||||||
|
CopyDataInit:
|
||||||
|
ldr r3, =_sidata
|
||||||
|
ldr r3, [r3, r1]
|
||||||
|
str r3, [r0, r1]
|
||||||
|
adds r1, r1, #4
|
||||||
|
|
||||||
|
LoopCopyDataInit:
|
||||||
|
ldr r0, =_sdata
|
||||||
|
ldr r3, =_edata
|
||||||
|
adds r2, r0, r1
|
||||||
|
cmp r2, r3
|
||||||
|
bcc CopyDataInit
|
||||||
|
ldr r2, =_sbss
|
||||||
|
b LoopFillZerobss
|
||||||
|
/* Zero fill the bss segment. */
|
||||||
|
FillZerobss:
|
||||||
|
movs r3, #0
|
||||||
|
str r3, [r2], #4
|
||||||
|
|
||||||
|
LoopFillZerobss:
|
||||||
|
ldr r3, = _ebss
|
||||||
|
cmp r2, r3
|
||||||
|
bcc FillZerobss
|
||||||
|
|
||||||
|
/* Call the clock system initialization function.*/
|
||||||
|
bl SystemInit
|
||||||
|
bl _start
|
||||||
|
bx lr
|
||||||
|
bx lr
|
||||||
|
.size Reset_Handler, .-Reset_Handler
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This is the code that gets called when the processor receives an
|
||||||
|
* unexpected interrupt. This simply enters an infinite loop, preserving
|
||||||
|
* the system state for examination by a debugger.
|
||||||
|
* @param None
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
.section .text.Default_Handler,"ax",%progbits
|
||||||
|
Default_Handler:
|
||||||
|
Infinite_Loop:
|
||||||
|
b Infinite_Loop
|
||||||
|
.size Default_Handler, .-Default_Handler
|
||||||
|
/******************************************************************************
|
||||||
|
*
|
||||||
|
* The minimal vector table for a Cortex M7. Note that the proper constructs
|
||||||
|
* must be placed on this to ensure that it ends up at physical address
|
||||||
|
* 0x0000.0000.
|
||||||
|
*
|
||||||
|
*******************************************************************************/
|
||||||
|
.section .isr_vector,"a",%progbits
|
||||||
|
.type g_pfnVectors, %object
|
||||||
|
.size g_pfnVectors, .-g_pfnVectors
|
||||||
|
|
||||||
|
|
||||||
|
g_pfnVectors:
|
||||||
|
.word _estack
|
||||||
|
.word Reset_Handler
|
||||||
|
|
||||||
|
.word NMI_Handler
|
||||||
|
.word HardFault_Handler
|
||||||
|
.word MemManage_Handler
|
||||||
|
.word BusFault_Handler
|
||||||
|
.word UsageFault_Handler
|
||||||
|
.word 0
|
||||||
|
.word 0
|
||||||
|
.word 0
|
||||||
|
.word 0
|
||||||
|
.word SVC_Handler
|
||||||
|
.word DebugMon_Handler
|
||||||
|
.word 0
|
||||||
|
.word PendSV_Handler
|
||||||
|
.word SysTick_Handler
|
||||||
|
|
||||||
|
/* External Interrupts */
|
||||||
|
.word WWDG_IRQHandler /* Window WatchDog */
|
||||||
|
.word PVD_IRQHandler /* PVD through EXTI Line detection */
|
||||||
|
.word TAMP_STAMP_IRQHandler /* Tamper and TimeStamps through the EXTI line */
|
||||||
|
.word RTC_WKUP_IRQHandler /* RTC Wakeup through the EXTI line */
|
||||||
|
.word FLASH_IRQHandler /* FLASH */
|
||||||
|
.word RCC_IRQHandler /* RCC */
|
||||||
|
.word EXTI0_IRQHandler /* EXTI Line0 */
|
||||||
|
.word EXTI1_IRQHandler /* EXTI Line1 */
|
||||||
|
.word EXTI2_IRQHandler /* EXTI Line2 */
|
||||||
|
.word EXTI3_IRQHandler /* EXTI Line3 */
|
||||||
|
.word EXTI4_IRQHandler /* EXTI Line4 */
|
||||||
|
.word DMA1_Stream0_IRQHandler /* DMA1 Stream 0 */
|
||||||
|
.word DMA1_Stream1_IRQHandler /* DMA1 Stream 1 */
|
||||||
|
.word DMA1_Stream2_IRQHandler /* DMA1 Stream 2 */
|
||||||
|
.word DMA1_Stream3_IRQHandler /* DMA1 Stream 3 */
|
||||||
|
.word DMA1_Stream4_IRQHandler /* DMA1 Stream 4 */
|
||||||
|
.word DMA1_Stream5_IRQHandler /* DMA1 Stream 5 */
|
||||||
|
.word DMA1_Stream6_IRQHandler /* DMA1 Stream 6 */
|
||||||
|
.word ADC_IRQHandler /* ADC1, ADC2 and ADC3s */
|
||||||
|
.word CAN1_TX_IRQHandler /* CAN1 TX */
|
||||||
|
.word CAN1_RX0_IRQHandler /* CAN1 RX0 */
|
||||||
|
.word CAN1_RX1_IRQHandler /* CAN1 RX1 */
|
||||||
|
.word CAN1_SCE_IRQHandler /* CAN1 SCE */
|
||||||
|
.word EXTI9_5_IRQHandler /* External Line[9:5]s */
|
||||||
|
.word TIM1_BRK_TIM9_IRQHandler /* TIM1 Break and TIM9 */
|
||||||
|
.word TIM1_UP_TIM10_IRQHandler /* TIM1 Update and TIM10 */
|
||||||
|
.word TIM1_TRG_COM_TIM11_IRQHandler /* TIM1 Trigger and Commutation and TIM11 */
|
||||||
|
.word TIM1_CC_IRQHandler /* TIM1 Capture Compare */
|
||||||
|
.word TIM2_IRQHandler /* TIM2 */
|
||||||
|
.word TIM3_IRQHandler /* TIM3 */
|
||||||
|
.word TIM4_IRQHandler /* TIM4 */
|
||||||
|
.word I2C1_EV_IRQHandler /* I2C1 Event */
|
||||||
|
.word I2C1_ER_IRQHandler /* I2C1 Error */
|
||||||
|
.word I2C2_EV_IRQHandler /* I2C2 Event */
|
||||||
|
.word I2C2_ER_IRQHandler /* I2C2 Error */
|
||||||
|
.word SPI1_IRQHandler /* SPI1 */
|
||||||
|
.word SPI2_IRQHandler /* SPI2 */
|
||||||
|
.word USART1_IRQHandler /* USART1 */
|
||||||
|
.word USART2_IRQHandler /* USART2 */
|
||||||
|
.word USART3_IRQHandler /* USART3 */
|
||||||
|
.word EXTI15_10_IRQHandler /* External Line[15:10]s */
|
||||||
|
.word RTC_Alarm_IRQHandler /* RTC Alarm (A and B) through EXTI Line */
|
||||||
|
.word OTG_FS_WKUP_IRQHandler /* USB OTG FS Wakeup through EXTI line */
|
||||||
|
.word TIM8_BRK_TIM12_IRQHandler /* TIM8 Break and TIM12 */
|
||||||
|
.word TIM8_UP_TIM13_IRQHandler /* TIM8 Update and TIM13 */
|
||||||
|
.word TIM8_TRG_COM_TIM14_IRQHandler /* TIM8 Trigger and Commutation and TIM14 */
|
||||||
|
.word TIM8_CC_IRQHandler /* TIM8 Capture Compare */
|
||||||
|
.word DMA1_Stream7_IRQHandler /* DMA1 Stream7 */
|
||||||
|
.word FMC_IRQHandler /* FMC */
|
||||||
|
.word SDMMC1_IRQHandler /* SDMMC1 */
|
||||||
|
.word TIM5_IRQHandler /* TIM5 */
|
||||||
|
.word SPI3_IRQHandler /* SPI3 */
|
||||||
|
.word UART4_IRQHandler /* UART4 */
|
||||||
|
.word UART5_IRQHandler /* UART5 */
|
||||||
|
.word TIM6_DAC_IRQHandler /* TIM6 and DAC1&2 underrun errors */
|
||||||
|
.word TIM7_IRQHandler /* TIM7 */
|
||||||
|
.word DMA2_Stream0_IRQHandler /* DMA2 Stream 0 */
|
||||||
|
.word DMA2_Stream1_IRQHandler /* DMA2 Stream 1 */
|
||||||
|
.word DMA2_Stream2_IRQHandler /* DMA2 Stream 2 */
|
||||||
|
.word DMA2_Stream3_IRQHandler /* DMA2 Stream 3 */
|
||||||
|
.word DMA2_Stream4_IRQHandler /* DMA2 Stream 4 */
|
||||||
|
.word ETH_IRQHandler /* Ethernet */
|
||||||
|
.word ETH_WKUP_IRQHandler /* Ethernet Wakeup through EXTI line */
|
||||||
|
.word CAN2_TX_IRQHandler /* CAN2 TX */
|
||||||
|
.word CAN2_RX0_IRQHandler /* CAN2 RX0 */
|
||||||
|
.word CAN2_RX1_IRQHandler /* CAN2 RX1 */
|
||||||
|
.word CAN2_SCE_IRQHandler /* CAN2 SCE */
|
||||||
|
.word OTG_FS_IRQHandler /* USB OTG FS */
|
||||||
|
.word DMA2_Stream5_IRQHandler /* DMA2 Stream 5 */
|
||||||
|
.word DMA2_Stream6_IRQHandler /* DMA2 Stream 6 */
|
||||||
|
.word DMA2_Stream7_IRQHandler /* DMA2 Stream 7 */
|
||||||
|
.word USART6_IRQHandler /* USART6 */
|
||||||
|
.word I2C3_EV_IRQHandler /* I2C3 event */
|
||||||
|
.word I2C3_ER_IRQHandler /* I2C3 error */
|
||||||
|
.word OTG_HS_EP1_OUT_IRQHandler /* USB OTG HS End Point 1 Out */
|
||||||
|
.word OTG_HS_EP1_IN_IRQHandler /* USB OTG HS End Point 1 In */
|
||||||
|
.word OTG_HS_WKUP_IRQHandler /* USB OTG HS Wakeup through EXTI */
|
||||||
|
.word OTG_HS_IRQHandler /* USB OTG HS */
|
||||||
|
.word DCMI_IRQHandler /* DCMI */
|
||||||
|
.word 0 /* Reserved */
|
||||||
|
.word RNG_IRQHandler /* Rng */
|
||||||
|
.word FPU_IRQHandler /* FPU */
|
||||||
|
.word UART7_IRQHandler /* UART7 */
|
||||||
|
.word UART8_IRQHandler /* UART8 */
|
||||||
|
.word SPI4_IRQHandler /* SPI4 */
|
||||||
|
.word SPI5_IRQHandler /* SPI5 */
|
||||||
|
.word SPI6_IRQHandler /* SPI6 */
|
||||||
|
.word SAI1_IRQHandler /* SAI1 */
|
||||||
|
.word LTDC_IRQHandler /* LTDC */
|
||||||
|
.word LTDC_ER_IRQHandler /* LTDC error */
|
||||||
|
.word DMA2D_IRQHandler /* DMA2D */
|
||||||
|
.word SAI2_IRQHandler /* SAI2 */
|
||||||
|
.word QUADSPI_IRQHandler /* QUADSPI */
|
||||||
|
.word LPTIM1_IRQHandler /* LPTIM1 */
|
||||||
|
.word CEC_IRQHandler /* HDMI_CEC */
|
||||||
|
.word I2C4_EV_IRQHandler /* I2C4 Event */
|
||||||
|
.word I2C4_ER_IRQHandler /* I2C4 Error */
|
||||||
|
.word SPDIF_RX_IRQHandler /* SPDIF_RX */
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
*
|
||||||
|
* Provide weak aliases for each Exception handler to the Default_Handler.
|
||||||
|
* As they are weak aliases, any function with the same name will override
|
||||||
|
* this definition.
|
||||||
|
*
|
||||||
|
*******************************************************************************/
|
||||||
|
.weak NMI_Handler
|
||||||
|
.thumb_set NMI_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak HardFault_Handler
|
||||||
|
.thumb_set HardFault_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak MemManage_Handler
|
||||||
|
.thumb_set MemManage_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak BusFault_Handler
|
||||||
|
.thumb_set BusFault_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak UsageFault_Handler
|
||||||
|
.thumb_set UsageFault_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak SVC_Handler
|
||||||
|
.thumb_set SVC_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak DebugMon_Handler
|
||||||
|
.thumb_set DebugMon_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak PendSV_Handler
|
||||||
|
.thumb_set PendSV_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak SysTick_Handler
|
||||||
|
.thumb_set SysTick_Handler,Default_Handler
|
||||||
|
|
||||||
|
.weak WWDG_IRQHandler
|
||||||
|
.thumb_set WWDG_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak PVD_IRQHandler
|
||||||
|
.thumb_set PVD_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TAMP_STAMP_IRQHandler
|
||||||
|
.thumb_set TAMP_STAMP_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak RTC_WKUP_IRQHandler
|
||||||
|
.thumb_set RTC_WKUP_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak FLASH_IRQHandler
|
||||||
|
.thumb_set FLASH_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak RCC_IRQHandler
|
||||||
|
.thumb_set RCC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI0_IRQHandler
|
||||||
|
.thumb_set EXTI0_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI1_IRQHandler
|
||||||
|
.thumb_set EXTI1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI2_IRQHandler
|
||||||
|
.thumb_set EXTI2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI3_IRQHandler
|
||||||
|
.thumb_set EXTI3_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI4_IRQHandler
|
||||||
|
.thumb_set EXTI4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream0_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream0_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream1_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream2_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream3_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream3_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream4_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream5_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream5_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream6_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream6_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak ADC_IRQHandler
|
||||||
|
.thumb_set ADC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN1_TX_IRQHandler
|
||||||
|
.thumb_set CAN1_TX_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN1_RX0_IRQHandler
|
||||||
|
.thumb_set CAN1_RX0_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN1_RX1_IRQHandler
|
||||||
|
.thumb_set CAN1_RX1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN1_SCE_IRQHandler
|
||||||
|
.thumb_set CAN1_SCE_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI9_5_IRQHandler
|
||||||
|
.thumb_set EXTI9_5_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM1_BRK_TIM9_IRQHandler
|
||||||
|
.thumb_set TIM1_BRK_TIM9_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM1_UP_TIM10_IRQHandler
|
||||||
|
.thumb_set TIM1_UP_TIM10_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM1_TRG_COM_TIM11_IRQHandler
|
||||||
|
.thumb_set TIM1_TRG_COM_TIM11_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM1_CC_IRQHandler
|
||||||
|
.thumb_set TIM1_CC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM2_IRQHandler
|
||||||
|
.thumb_set TIM2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM3_IRQHandler
|
||||||
|
.thumb_set TIM3_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM4_IRQHandler
|
||||||
|
.thumb_set TIM4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C1_EV_IRQHandler
|
||||||
|
.thumb_set I2C1_EV_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C1_ER_IRQHandler
|
||||||
|
.thumb_set I2C1_ER_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C2_EV_IRQHandler
|
||||||
|
.thumb_set I2C2_EV_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C2_ER_IRQHandler
|
||||||
|
.thumb_set I2C2_ER_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPI1_IRQHandler
|
||||||
|
.thumb_set SPI1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPI2_IRQHandler
|
||||||
|
.thumb_set SPI2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak USART1_IRQHandler
|
||||||
|
.thumb_set USART1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak USART2_IRQHandler
|
||||||
|
.thumb_set USART2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak USART3_IRQHandler
|
||||||
|
.thumb_set USART3_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak EXTI15_10_IRQHandler
|
||||||
|
.thumb_set EXTI15_10_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak RTC_Alarm_IRQHandler
|
||||||
|
.thumb_set RTC_Alarm_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak OTG_FS_WKUP_IRQHandler
|
||||||
|
.thumb_set OTG_FS_WKUP_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM8_BRK_TIM12_IRQHandler
|
||||||
|
.thumb_set TIM8_BRK_TIM12_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM8_UP_TIM13_IRQHandler
|
||||||
|
.thumb_set TIM8_UP_TIM13_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM8_TRG_COM_TIM14_IRQHandler
|
||||||
|
.thumb_set TIM8_TRG_COM_TIM14_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM8_CC_IRQHandler
|
||||||
|
.thumb_set TIM8_CC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA1_Stream7_IRQHandler
|
||||||
|
.thumb_set DMA1_Stream7_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak FMC_IRQHandler
|
||||||
|
.thumb_set FMC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SDMMC1_IRQHandler
|
||||||
|
.thumb_set SDMMC1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM5_IRQHandler
|
||||||
|
.thumb_set TIM5_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPI3_IRQHandler
|
||||||
|
.thumb_set SPI3_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak UART4_IRQHandler
|
||||||
|
.thumb_set UART4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak UART5_IRQHandler
|
||||||
|
.thumb_set UART5_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM6_DAC_IRQHandler
|
||||||
|
.thumb_set TIM6_DAC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak TIM7_IRQHandler
|
||||||
|
.thumb_set TIM7_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream0_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream0_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream1_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream2_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream3_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream3_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream4_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream4_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak ETH_IRQHandler
|
||||||
|
.thumb_set ETH_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak ETH_WKUP_IRQHandler
|
||||||
|
.thumb_set ETH_WKUP_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN2_TX_IRQHandler
|
||||||
|
.thumb_set CAN2_TX_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN2_RX0_IRQHandler
|
||||||
|
.thumb_set CAN2_RX0_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN2_RX1_IRQHandler
|
||||||
|
.thumb_set CAN2_RX1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CAN2_SCE_IRQHandler
|
||||||
|
.thumb_set CAN2_SCE_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak OTG_FS_IRQHandler
|
||||||
|
.thumb_set OTG_FS_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream5_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream5_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream6_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream6_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2_Stream7_IRQHandler
|
||||||
|
.thumb_set DMA2_Stream7_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak USART6_IRQHandler
|
||||||
|
.thumb_set USART6_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C3_EV_IRQHandler
|
||||||
|
.thumb_set I2C3_EV_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C3_ER_IRQHandler
|
||||||
|
.thumb_set I2C3_ER_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak OTG_HS_EP1_OUT_IRQHandler
|
||||||
|
.thumb_set OTG_HS_EP1_OUT_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak OTG_HS_EP1_IN_IRQHandler
|
||||||
|
.thumb_set OTG_HS_EP1_IN_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak OTG_HS_WKUP_IRQHandler
|
||||||
|
.thumb_set OTG_HS_WKUP_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak OTG_HS_IRQHandler
|
||||||
|
.thumb_set OTG_HS_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DCMI_IRQHandler
|
||||||
|
.thumb_set DCMI_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak RNG_IRQHandler
|
||||||
|
.thumb_set RNG_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak FPU_IRQHandler
|
||||||
|
.thumb_set FPU_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak UART7_IRQHandler
|
||||||
|
.thumb_set UART7_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak UART8_IRQHandler
|
||||||
|
.thumb_set UART8_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPI4_IRQHandler
|
||||||
|
.thumb_set SPI4_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPI5_IRQHandler
|
||||||
|
.thumb_set SPI5_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPI6_IRQHandler
|
||||||
|
.thumb_set SPI6_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SAI1_IRQHandler
|
||||||
|
.thumb_set SAI1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak LTDC_IRQHandler
|
||||||
|
.thumb_set LTDC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak LTDC_ER_IRQHandler
|
||||||
|
.thumb_set LTDC_ER_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak DMA2D_IRQHandler
|
||||||
|
.thumb_set DMA2D_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SAI2_IRQHandler
|
||||||
|
.thumb_set SAI2_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak QUADSPI_IRQHandler
|
||||||
|
.thumb_set QUADSPI_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak LPTIM1_IRQHandler
|
||||||
|
.thumb_set LPTIM1_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak CEC_IRQHandler
|
||||||
|
.thumb_set CEC_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C4_EV_IRQHandler
|
||||||
|
.thumb_set I2C4_EV_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak I2C4_ER_IRQHandler
|
||||||
|
.thumb_set I2C4_ER_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
.weak SPDIF_RX_IRQHandler
|
||||||
|
.thumb_set SPDIF_RX_IRQHandler,Default_Handler
|
||||||
|
|
||||||
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||||
|
|
||||||
809
stm32746g_discovery_qspi.c
Normal file
809
stm32746g_discovery_qspi.c
Normal file
@@ -0,0 +1,809 @@
|
|||||||
|
/**
|
||||||
|
******************************************************************************
|
||||||
|
* @file stm32746g_discovery_qspi.c
|
||||||
|
* @author MCD Application Team
|
||||||
|
* @brief This file includes a standard driver for the N25Q128A QSPI
|
||||||
|
* memory mounted on STM32746G-Discovery board.
|
||||||
|
@verbatim
|
||||||
|
==============================================================================
|
||||||
|
##### How to use this driver #####
|
||||||
|
==============================================================================
|
||||||
|
[..]
|
||||||
|
(#) This driver is used to drive the N25Q128A QSPI external
|
||||||
|
memory mounted on STM32746G-Discovery board.
|
||||||
|
|
||||||
|
(#) This driver need a specific component driver (N25Q128A) to be included with.
|
||||||
|
|
||||||
|
(#) Initialization steps:
|
||||||
|
(++) Initialize the QPSI external memory using the BSP_QSPI_Init() function. This
|
||||||
|
function includes the MSP layer hardware resources initialization and the
|
||||||
|
QSPI interface with the external memory.
|
||||||
|
|
||||||
|
(#) QSPI memory operations
|
||||||
|
(++) QSPI memory can be accessed with read/write operations once it is
|
||||||
|
initialized.
|
||||||
|
Read/write operation can be performed with AHB access using the functions
|
||||||
|
BSP_QSPI_Read()/BSP_QSPI_Write().
|
||||||
|
(++) The function BSP_QSPI_GetInfo() returns the configuration of the QSPI memory.
|
||||||
|
(see the QSPI memory data sheet)
|
||||||
|
(++) Perform erase block operation using the function BSP_QSPI_Erase_Block() and by
|
||||||
|
specifying the block address. You can perform an erase operation of the whole
|
||||||
|
chip by calling the function BSP_QSPI_Erase_Chip().
|
||||||
|
(++) The function BSP_QSPI_GetStatus() returns the current status of the QSPI memory.
|
||||||
|
(see the QSPI memory data sheet)
|
||||||
|
@endverbatim
|
||||||
|
******************************************************************************
|
||||||
|
* @attention
|
||||||
|
*
|
||||||
|
* <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
* are permitted provided that the following conditions are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Dependencies
|
||||||
|
- stm32f7xx_hal_qspi.c
|
||||||
|
- stm32f7xx_hal_gpio.c
|
||||||
|
- stm32f7xx_hal_cortex.c
|
||||||
|
- stm32f7xx_hal_rcc_ex.h
|
||||||
|
- n25q128a.h
|
||||||
|
EndDependencies */
|
||||||
|
|
||||||
|
/* Includes ------------------------------------------------------------------*/
|
||||||
|
#include "stm32746g_discovery_qspi.h"
|
||||||
|
|
||||||
|
/** @addtogroup BSP
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @addtogroup STM32746G_DISCOVERY
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @defgroup STM32746G_DISCOVERY_QSPI STM32746G-Discovery QSPI
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* Private variables ---------------------------------------------------------*/
|
||||||
|
|
||||||
|
/** @defgroup STM32746G_DISCOVERY_QSPI_Private_Variables STM32746G_DISCOVERY QSPI Private Variables
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
QSPI_HandleTypeDef QSPIHandle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Private functions ---------------------------------------------------------*/
|
||||||
|
|
||||||
|
/** @defgroup STM32746G_DISCOVERY_QSPI_Private_Functions STM32746G_DISCOVERY QSPI Private Functions
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
static uint8_t QSPI_ResetMemory (QSPI_HandleTypeDef *hqspi);
|
||||||
|
static uint8_t QSPI_DummyCyclesCfg (QSPI_HandleTypeDef *hqspi);
|
||||||
|
static uint8_t QSPI_WriteEnable (QSPI_HandleTypeDef *hqspi);
|
||||||
|
static uint8_t QSPI_AutoPollingMemReady (QSPI_HandleTypeDef *hqspi, uint32_t Timeout);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @defgroup STM32746G_DISCOVERY_QSPI_Exported_Functions STM32746G_DISCOVERY QSPI Exported Functions
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Initializes the QSPI interface.
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_Init(void)
|
||||||
|
{
|
||||||
|
QSPIHandle.Instance = QUADSPI;
|
||||||
|
|
||||||
|
/* Call the DeInit function to reset the driver */
|
||||||
|
if (HAL_QSPI_DeInit(&QSPIHandle) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* System level initialization */
|
||||||
|
BSP_QSPI_MspInit(&QSPIHandle, NULL);
|
||||||
|
|
||||||
|
/* QSPI initialization */
|
||||||
|
QSPIHandle.Init.ClockPrescaler = 1; /* QSPI freq = 216 MHz/(1+1) = 108 Mhz */
|
||||||
|
QSPIHandle.Init.FifoThreshold = 4;
|
||||||
|
QSPIHandle.Init.SampleShifting = QSPI_SAMPLE_SHIFTING_HALFCYCLE;
|
||||||
|
QSPIHandle.Init.FlashSize = POSITION_VAL(N25Q128A_FLASH_SIZE) - 1;
|
||||||
|
QSPIHandle.Init.ChipSelectHighTime = QSPI_CS_HIGH_TIME_6_CYCLE; /* Min 50ns for nonRead */
|
||||||
|
QSPIHandle.Init.ClockMode = QSPI_CLOCK_MODE_0;
|
||||||
|
QSPIHandle.Init.FlashID = QSPI_FLASH_ID_1;
|
||||||
|
QSPIHandle.Init.DualFlash = QSPI_DUALFLASH_DISABLE;
|
||||||
|
|
||||||
|
if (HAL_QSPI_Init(&QSPIHandle) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* QSPI memory reset */
|
||||||
|
if (QSPI_ResetMemory(&QSPIHandle) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configuration of the dummy cycles on QSPI memory side */
|
||||||
|
if (QSPI_DummyCyclesCfg(&QSPIHandle) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief De-Initializes the QSPI interface.
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_DeInit(void)
|
||||||
|
{
|
||||||
|
QSPIHandle.Instance = QUADSPI;
|
||||||
|
|
||||||
|
/* Call the DeInit function to reset the driver */
|
||||||
|
if (HAL_QSPI_DeInit(&QSPIHandle) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* System level De-initialization */
|
||||||
|
BSP_QSPI_MspDeInit(&QSPIHandle, NULL);
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Reads an amount of data from the QSPI memory.
|
||||||
|
* @param pData: Pointer to data to be read
|
||||||
|
* @param ReadAddr: Read start address
|
||||||
|
* @param Size: Size of data to read
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_Read(uint8_t* pData, uint32_t ReadAddr, uint32_t Size)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
|
||||||
|
/* Initialize the read command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = QUAD_INOUT_FAST_READ_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_4_LINES;
|
||||||
|
s_command.AddressSize = QSPI_ADDRESS_24_BITS;
|
||||||
|
s_command.Address = ReadAddr;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_4_LINES;
|
||||||
|
s_command.DummyCycles = N25Q128A_DUMMY_CYCLES_READ_QUAD;
|
||||||
|
s_command.NbData = Size;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Configure the command */
|
||||||
|
if (HAL_QSPI_Command(&QSPIHandle, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Set S# timing for Read command */
|
||||||
|
MODIFY_REG(QSPIHandle.Instance->DCR, QUADSPI_DCR_CSHT, QSPI_CS_HIGH_TIME_3_CYCLE);
|
||||||
|
|
||||||
|
/* Reception of the data */
|
||||||
|
if (HAL_QSPI_Receive(&QSPIHandle, pData, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Restore S# timing for nonRead commands */
|
||||||
|
MODIFY_REG(QSPIHandle.Instance->DCR, QUADSPI_DCR_CSHT, QSPI_CS_HIGH_TIME_6_CYCLE);
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Writes an amount of data to the QSPI memory.
|
||||||
|
* @param pData: Pointer to data to be written
|
||||||
|
* @param WriteAddr: Write start address
|
||||||
|
* @param Size: Size of data to write
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_Write(uint8_t* pData, uint32_t WriteAddr, uint32_t Size)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
uint32_t end_addr, current_size, current_addr;
|
||||||
|
|
||||||
|
/* Calculation of the size between the write address and the end of the page */
|
||||||
|
current_size = N25Q128A_PAGE_SIZE - (WriteAddr % N25Q128A_PAGE_SIZE);
|
||||||
|
|
||||||
|
/* Check if the size of the data is less than the remaining place in the page */
|
||||||
|
if (current_size > Size)
|
||||||
|
{
|
||||||
|
current_size = Size;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Initialize the adress variables */
|
||||||
|
current_addr = WriteAddr;
|
||||||
|
end_addr = WriteAddr + Size;
|
||||||
|
|
||||||
|
/* Initialize the program command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = EXT_QUAD_IN_FAST_PROG_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_4_LINES;
|
||||||
|
s_command.AddressSize = QSPI_ADDRESS_24_BITS;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_4_LINES;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Perform the write page by page */
|
||||||
|
do
|
||||||
|
{
|
||||||
|
s_command.Address = current_addr;
|
||||||
|
s_command.NbData = current_size;
|
||||||
|
|
||||||
|
/* Enable write operations */
|
||||||
|
if (QSPI_WriteEnable(&QSPIHandle) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configure the command */
|
||||||
|
if (HAL_QSPI_Command(&QSPIHandle, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Transmission of the data */
|
||||||
|
if (HAL_QSPI_Transmit(&QSPIHandle, pData, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configure automatic polling mode to wait for end of program */
|
||||||
|
if (QSPI_AutoPollingMemReady(&QSPIHandle, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Update the address and size variables for next page programming */
|
||||||
|
current_addr += current_size;
|
||||||
|
pData += current_size;
|
||||||
|
current_size = ((current_addr + N25Q128A_PAGE_SIZE) > end_addr) ? (end_addr - current_addr) : N25Q128A_PAGE_SIZE;
|
||||||
|
} while (current_addr < end_addr);
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Erases the specified block of the QSPI memory.
|
||||||
|
* @param BlockAddress: Block address to erase
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_Erase_Block(uint32_t BlockAddress)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
|
||||||
|
/* Initialize the erase command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = SUBSECTOR_ERASE_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_1_LINE;
|
||||||
|
s_command.AddressSize = QSPI_ADDRESS_24_BITS;
|
||||||
|
s_command.Address = BlockAddress;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_NONE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Enable write operations */
|
||||||
|
if (QSPI_WriteEnable(&QSPIHandle) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Send the command */
|
||||||
|
if (HAL_QSPI_Command(&QSPIHandle, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configure automatic polling mode to wait for end of erase */
|
||||||
|
if (QSPI_AutoPollingMemReady(&QSPIHandle, N25Q128A_SUBSECTOR_ERASE_MAX_TIME) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t BSP_QSPI_EraseSector(uint32_t EraseStartAddress, uint32_t EraseEndAddress) {
|
||||||
|
|
||||||
|
|
||||||
|
while (EraseEndAddress >= EraseStartAddress) {
|
||||||
|
BSP_QSPI_Erase_Block(EraseStartAddress & 0x0FFFFFFF);
|
||||||
|
EraseStartAddress += QSPI_SECTOR_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return HAL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Erases the entire QSPI memory.
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_Erase_Chip(void)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
|
||||||
|
/* Initialize the erase command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = BULK_ERASE_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_NONE;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_NONE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Enable write operations */
|
||||||
|
if (QSPI_WriteEnable(&QSPIHandle) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Send the command */
|
||||||
|
if (HAL_QSPI_Command(&QSPIHandle, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configure automatic polling mode to wait for end of erase */
|
||||||
|
if (QSPI_AutoPollingMemReady(&QSPIHandle, N25Q128A_BULK_ERASE_MAX_TIME) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Reads current status of the QSPI memory.
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_GetStatus(void)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
uint8_t reg;
|
||||||
|
|
||||||
|
/* Initialize the read flag status register command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = READ_FLAG_STATUS_REG_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_NONE;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_1_LINE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.NbData = 1;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Configure the command */
|
||||||
|
if (HAL_QSPI_Command(&QSPIHandle, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Reception of the data */
|
||||||
|
if (HAL_QSPI_Receive(&QSPIHandle, ®, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check the value of the register */
|
||||||
|
if ((reg & (N25Q128A_FSR_PRERR | N25Q128A_FSR_VPPERR | N25Q128A_FSR_PGERR | N25Q128A_FSR_ERERR)) != 0)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
else if ((reg & (N25Q128A_FSR_PGSUS | N25Q128A_FSR_ERSUS)) != 0)
|
||||||
|
{
|
||||||
|
return QSPI_SUSPENDED;
|
||||||
|
}
|
||||||
|
else if ((reg & N25Q128A_FSR_READY) != 0)
|
||||||
|
{
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return QSPI_BUSY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Return the configuration of the QSPI memory.
|
||||||
|
* @param pInfo: pointer on the configuration structure
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_GetInfo(QSPI_Info* pInfo)
|
||||||
|
{
|
||||||
|
/* Configure the structure with the memory configuration */
|
||||||
|
pInfo->FlashSize = N25Q128A_FLASH_SIZE;
|
||||||
|
pInfo->EraseSectorSize = N25Q128A_SUBSECTOR_SIZE;
|
||||||
|
pInfo->EraseSectorsNumber = (N25Q128A_FLASH_SIZE/N25Q128A_SUBSECTOR_SIZE);
|
||||||
|
pInfo->ProgPageSize = N25Q128A_PAGE_SIZE;
|
||||||
|
pInfo->ProgPagesNumber = (N25Q128A_FLASH_SIZE/N25Q128A_PAGE_SIZE);
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configure the QSPI in memory-mapped mode
|
||||||
|
* @retval QSPI memory status
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_EnableMemoryMappedMode(void)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
QSPI_MemoryMappedTypeDef s_mem_mapped_cfg;
|
||||||
|
|
||||||
|
/* Configure the command for the read instruction */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = QUAD_INOUT_FAST_READ_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_4_LINES;
|
||||||
|
s_command.AddressSize = QSPI_ADDRESS_24_BITS;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_4_LINES;
|
||||||
|
s_command.DummyCycles = N25Q128A_DUMMY_CYCLES_READ_QUAD;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Configure the memory mapped mode */
|
||||||
|
s_mem_mapped_cfg.TimeOutActivation = QSPI_TIMEOUT_COUNTER_DISABLE;
|
||||||
|
s_mem_mapped_cfg.TimeOutPeriod = 0;
|
||||||
|
|
||||||
|
if (HAL_QSPI_MemoryMapped(&QSPIHandle, &s_command, &s_mem_mapped_cfg) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @addtogroup STM32746G_DISCOVERY_QSPI_Private_Functions
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief QSPI MSP Initialization
|
||||||
|
* This function configures the hardware resources used in this example:
|
||||||
|
* - Peripheral's clock enable
|
||||||
|
* - Peripheral's GPIO Configuration
|
||||||
|
* - NVIC configuration for QSPI interrupt
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
__weak void BSP_QSPI_MspInit(QSPI_HandleTypeDef *hqspi, void *Params)
|
||||||
|
{
|
||||||
|
GPIO_InitTypeDef gpio_init_structure;
|
||||||
|
|
||||||
|
/*##-1- Enable peripherals and GPIO Clocks #################################*/
|
||||||
|
/* Enable the QuadSPI memory interface clock */
|
||||||
|
QSPI_CLK_ENABLE();
|
||||||
|
/* Reset the QuadSPI memory interface */
|
||||||
|
QSPI_FORCE_RESET();
|
||||||
|
QSPI_RELEASE_RESET();
|
||||||
|
/* Enable GPIO clocks */
|
||||||
|
QSPI_CS_GPIO_CLK_ENABLE();
|
||||||
|
QSPI_CLK_GPIO_CLK_ENABLE();
|
||||||
|
QSPI_D0_GPIO_CLK_ENABLE();
|
||||||
|
QSPI_D1_GPIO_CLK_ENABLE();
|
||||||
|
QSPI_D2_GPIO_CLK_ENABLE();
|
||||||
|
QSPI_D3_GPIO_CLK_ENABLE();
|
||||||
|
|
||||||
|
/*##-2- Configure peripheral GPIO ##########################################*/
|
||||||
|
/* QSPI CS GPIO pin configuration */
|
||||||
|
gpio_init_structure.Pin = QSPI_CS_PIN;
|
||||||
|
gpio_init_structure.Mode = GPIO_MODE_AF_PP;
|
||||||
|
gpio_init_structure.Pull = GPIO_PULLUP;
|
||||||
|
gpio_init_structure.Speed = GPIO_SPEED_HIGH;
|
||||||
|
gpio_init_structure.Alternate = GPIO_AF10_QUADSPI;
|
||||||
|
HAL_GPIO_Init(QSPI_CS_GPIO_PORT, &gpio_init_structure);
|
||||||
|
|
||||||
|
/* QSPI CLK GPIO pin configuration */
|
||||||
|
gpio_init_structure.Pin = QSPI_CLK_PIN;
|
||||||
|
gpio_init_structure.Pull = GPIO_NOPULL;
|
||||||
|
gpio_init_structure.Alternate = GPIO_AF9_QUADSPI;
|
||||||
|
HAL_GPIO_Init(QSPI_CLK_GPIO_PORT, &gpio_init_structure);
|
||||||
|
|
||||||
|
/* QSPI D0 GPIO pin configuration */
|
||||||
|
gpio_init_structure.Pin = QSPI_D0_PIN;
|
||||||
|
gpio_init_structure.Alternate = GPIO_AF9_QUADSPI;
|
||||||
|
HAL_GPIO_Init(QSPI_D0_GPIO_PORT, &gpio_init_structure);
|
||||||
|
|
||||||
|
/* QSPI D1 GPIO pin configuration */
|
||||||
|
gpio_init_structure.Pin = QSPI_D1_PIN;
|
||||||
|
gpio_init_structure.Alternate = GPIO_AF9_QUADSPI;
|
||||||
|
HAL_GPIO_Init(QSPI_D1_GPIO_PORT, &gpio_init_structure);
|
||||||
|
|
||||||
|
/* QSPI D2 GPIO pin configuration */
|
||||||
|
gpio_init_structure.Pin = QSPI_D2_PIN;
|
||||||
|
gpio_init_structure.Alternate = GPIO_AF9_QUADSPI;
|
||||||
|
HAL_GPIO_Init(QSPI_D2_GPIO_PORT, &gpio_init_structure);
|
||||||
|
|
||||||
|
/* QSPI D3 GPIO pin configuration */
|
||||||
|
gpio_init_structure.Pin = QSPI_D3_PIN;
|
||||||
|
gpio_init_structure.Alternate = GPIO_AF9_QUADSPI;
|
||||||
|
HAL_GPIO_Init(QSPI_D3_GPIO_PORT, &gpio_init_structure);
|
||||||
|
|
||||||
|
/*##-3- Configure the NVIC for QSPI #########################################*/
|
||||||
|
/* NVIC configuration for QSPI interrupt */
|
||||||
|
HAL_NVIC_SetPriority(QUADSPI_IRQn, 0x0F, 0);
|
||||||
|
// HAL_NVIC_EnableIRQ(QUADSPI_IRQn);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief QSPI MSP De-Initialization
|
||||||
|
* This function frees the hardware resources used in this example:
|
||||||
|
* - Disable the Peripheral's clock
|
||||||
|
* - Revert GPIO and NVIC configuration to their default state
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
__weak void BSP_QSPI_MspDeInit(QSPI_HandleTypeDef *hqspi, void *Params)
|
||||||
|
{
|
||||||
|
/*##-1- Disable the NVIC for QSPI ###########################################*/
|
||||||
|
HAL_NVIC_DisableIRQ(QUADSPI_IRQn);
|
||||||
|
|
||||||
|
/*##-2- Disable peripherals and GPIO Clocks ################################*/
|
||||||
|
/* De-Configure QSPI pins */
|
||||||
|
HAL_GPIO_DeInit(QSPI_CS_GPIO_PORT, QSPI_CS_PIN);
|
||||||
|
HAL_GPIO_DeInit(QSPI_CLK_GPIO_PORT, QSPI_CLK_PIN);
|
||||||
|
HAL_GPIO_DeInit(QSPI_D0_GPIO_PORT, QSPI_D0_PIN);
|
||||||
|
HAL_GPIO_DeInit(QSPI_D1_GPIO_PORT, QSPI_D1_PIN);
|
||||||
|
HAL_GPIO_DeInit(QSPI_D2_GPIO_PORT, QSPI_D2_PIN);
|
||||||
|
HAL_GPIO_DeInit(QSPI_D3_GPIO_PORT, QSPI_D3_PIN);
|
||||||
|
|
||||||
|
/*##-3- Reset peripherals ##################################################*/
|
||||||
|
/* Reset the QuadSPI memory interface */
|
||||||
|
QSPI_FORCE_RESET();
|
||||||
|
QSPI_RELEASE_RESET();
|
||||||
|
|
||||||
|
/* Disable the QuadSPI memory interface clock */
|
||||||
|
QSPI_CLK_DISABLE();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This function reset the QSPI memory.
|
||||||
|
* @param hqspi: QSPI handle
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
static uint8_t QSPI_ResetMemory(QSPI_HandleTypeDef *hqspi)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
|
||||||
|
/* Initialize the reset enable command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = RESET_ENABLE_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_NONE;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_NONE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Send the command */
|
||||||
|
if (HAL_QSPI_Command(hqspi, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Send the reset memory command */
|
||||||
|
s_command.Instruction = RESET_MEMORY_CMD;
|
||||||
|
if (HAL_QSPI_Command(hqspi, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configure automatic polling mode to wait the memory is ready */
|
||||||
|
if (QSPI_AutoPollingMemReady(hqspi, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This function configure the dummy cycles on memory side.
|
||||||
|
* @param hqspi: QSPI handle
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
static uint8_t QSPI_DummyCyclesCfg(QSPI_HandleTypeDef *hqspi)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
uint8_t reg;
|
||||||
|
|
||||||
|
/* Initialize the read volatile configuration register command */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = READ_VOL_CFG_REG_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_NONE;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_1_LINE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.NbData = 1;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
/* Configure the command */
|
||||||
|
if (HAL_QSPI_Command(hqspi, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Reception of the data */
|
||||||
|
if (HAL_QSPI_Receive(hqspi, ®, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Enable write operations */
|
||||||
|
if (QSPI_WriteEnable(hqspi) != QSPI_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Update volatile configuration register (with new dummy cycles) */
|
||||||
|
s_command.Instruction = WRITE_VOL_CFG_REG_CMD;
|
||||||
|
MODIFY_REG(reg, N25Q128A_VCR_NB_DUMMY, (N25Q128A_DUMMY_CYCLES_READ_QUAD << POSITION_VAL(N25Q128A_VCR_NB_DUMMY)));
|
||||||
|
|
||||||
|
/* Configure the write volatile configuration register command */
|
||||||
|
if (HAL_QSPI_Command(hqspi, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Transmission of the data */
|
||||||
|
if (HAL_QSPI_Transmit(hqspi, ®, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This function send a Write Enable and wait it is effective.
|
||||||
|
* @param hqspi: QSPI handle
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
static uint8_t QSPI_WriteEnable(QSPI_HandleTypeDef *hqspi)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
QSPI_AutoPollingTypeDef s_config;
|
||||||
|
|
||||||
|
/* Enable write operations */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = WRITE_ENABLE_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_NONE;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_NONE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
if (HAL_QSPI_Command(hqspi, &s_command, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Configure automatic polling mode to wait for write enabling */
|
||||||
|
s_config.Match = N25Q128A_SR_WREN;
|
||||||
|
s_config.Mask = N25Q128A_SR_WREN;
|
||||||
|
s_config.MatchMode = QSPI_MATCH_MODE_AND;
|
||||||
|
s_config.StatusBytesSize = 1;
|
||||||
|
s_config.Interval = 0x10;
|
||||||
|
s_config.AutomaticStop = QSPI_AUTOMATIC_STOP_ENABLE;
|
||||||
|
|
||||||
|
s_command.Instruction = READ_STATUS_REG_CMD;
|
||||||
|
s_command.DataMode = QSPI_DATA_1_LINE;
|
||||||
|
|
||||||
|
if (HAL_QSPI_AutoPolling(hqspi, &s_command, &s_config, HAL_QPSI_TIMEOUT_DEFAULT_VALUE) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This function read the SR of the memory and wait the EOP.
|
||||||
|
* @param hqspi: QSPI handle
|
||||||
|
* @param Timeout
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
static uint8_t QSPI_AutoPollingMemReady(QSPI_HandleTypeDef *hqspi, uint32_t Timeout)
|
||||||
|
{
|
||||||
|
QSPI_CommandTypeDef s_command;
|
||||||
|
QSPI_AutoPollingTypeDef s_config;
|
||||||
|
|
||||||
|
/* Configure automatic polling mode to wait for memory ready */
|
||||||
|
s_command.InstructionMode = QSPI_INSTRUCTION_1_LINE;
|
||||||
|
s_command.Instruction = READ_STATUS_REG_CMD;
|
||||||
|
s_command.AddressMode = QSPI_ADDRESS_NONE;
|
||||||
|
s_command.AlternateByteMode = QSPI_ALTERNATE_BYTES_NONE;
|
||||||
|
s_command.DataMode = QSPI_DATA_1_LINE;
|
||||||
|
s_command.DummyCycles = 0;
|
||||||
|
s_command.DdrMode = QSPI_DDR_MODE_DISABLE;
|
||||||
|
s_command.DdrHoldHalfCycle = QSPI_DDR_HHC_ANALOG_DELAY;
|
||||||
|
s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;
|
||||||
|
|
||||||
|
s_config.Match = 0;
|
||||||
|
s_config.Mask = N25Q128A_SR_WIP;
|
||||||
|
s_config.MatchMode = QSPI_MATCH_MODE_AND;
|
||||||
|
s_config.StatusBytesSize = 1;
|
||||||
|
s_config.Interval = 0x10;
|
||||||
|
s_config.AutomaticStop = QSPI_AUTOMATIC_STOP_ENABLE;
|
||||||
|
|
||||||
|
if (HAL_QSPI_AutoPolling(hqspi, &s_command, &s_config, Timeout) != HAL_OK)
|
||||||
|
{
|
||||||
|
return QSPI_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSPI_OK;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||||
|
|
||||||
172
stm32746g_discovery_qspi.h
Normal file
172
stm32746g_discovery_qspi.h
Normal file
@@ -0,0 +1,172 @@
|
|||||||
|
/**
|
||||||
|
******************************************************************************
|
||||||
|
* @file stm32746g_discovery_qspi.h
|
||||||
|
* @author MCD Application Team
|
||||||
|
* @brief This file contains the common defines and functions prototypes for
|
||||||
|
* the stm32746g_discovery_qspi.c driver.
|
||||||
|
******************************************************************************
|
||||||
|
* @attention
|
||||||
|
*
|
||||||
|
* <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
* are permitted provided that the following conditions are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
******************************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @addtogroup BSP
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @addtogroup STM32746G_DISCOVERY
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||||
|
#ifndef __STM32746G_DISCOVERY_QSPI_H
|
||||||
|
#define __STM32746G_DISCOVERY_QSPI_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Includes ------------------------------------------------------------------*/
|
||||||
|
#include "stm32f7xx_hal.h"
|
||||||
|
#include "n25q128a.h"
|
||||||
|
|
||||||
|
/** @addtogroup STM32746G_DISCOVERY_QSPI
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* Exported constants --------------------------------------------------------*/
|
||||||
|
/** @defgroup STM32746G_DISCOVERY_QSPI_Exported_Constants STM32746G_DISCOVERY_QSPI Exported Constants
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/* QSPI Error codes */
|
||||||
|
#define QSPI_OK ((uint8_t)0x00)
|
||||||
|
#define QSPI_ERROR ((uint8_t)0x01)
|
||||||
|
#define QSPI_BUSY ((uint8_t)0x02)
|
||||||
|
#define QSPI_NOT_SUPPORTED ((uint8_t)0x04)
|
||||||
|
#define QSPI_SUSPENDED ((uint8_t)0x08)
|
||||||
|
|
||||||
|
|
||||||
|
/* Definition for QSPI clock resources */
|
||||||
|
#define QSPI_CLK_ENABLE() __HAL_RCC_QSPI_CLK_ENABLE()
|
||||||
|
#define QSPI_CLK_DISABLE() __HAL_RCC_QSPI_CLK_DISABLE()
|
||||||
|
#define QSPI_CS_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE()
|
||||||
|
#define QSPI_CLK_GPIO_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE()
|
||||||
|
#define QSPI_D0_GPIO_CLK_ENABLE() __HAL_RCC_GPIOD_CLK_ENABLE()
|
||||||
|
#define QSPI_D1_GPIO_CLK_ENABLE() __HAL_RCC_GPIOD_CLK_ENABLE()
|
||||||
|
#define QSPI_D2_GPIO_CLK_ENABLE() __HAL_RCC_GPIOF_CLK_ENABLE()
|
||||||
|
#define QSPI_D3_GPIO_CLK_ENABLE() __HAL_RCC_GPIOD_CLK_ENABLE()
|
||||||
|
|
||||||
|
#define QSPI_FORCE_RESET() __HAL_RCC_QSPI_FORCE_RESET()
|
||||||
|
#define QSPI_RELEASE_RESET() __HAL_RCC_QSPI_RELEASE_RESET()
|
||||||
|
|
||||||
|
/* Definition for QSPI Pins */
|
||||||
|
#define QSPI_CS_PIN GPIO_PIN_6
|
||||||
|
#define QSPI_CS_GPIO_PORT GPIOB
|
||||||
|
#define QSPI_CLK_PIN GPIO_PIN_2
|
||||||
|
#define QSPI_CLK_GPIO_PORT GPIOB
|
||||||
|
#define QSPI_D0_PIN GPIO_PIN_11
|
||||||
|
#define QSPI_D0_GPIO_PORT GPIOD
|
||||||
|
#define QSPI_D1_PIN GPIO_PIN_12
|
||||||
|
#define QSPI_D1_GPIO_PORT GPIOD
|
||||||
|
#define QSPI_D2_PIN GPIO_PIN_7
|
||||||
|
#define QSPI_D2_GPIO_PORT GPIOF
|
||||||
|
#define QSPI_D3_PIN GPIO_PIN_13
|
||||||
|
#define QSPI_D3_GPIO_PORT GPIOD
|
||||||
|
|
||||||
|
/* N25Q128A13EF840E Micron memory */
|
||||||
|
/* Size of the flash */
|
||||||
|
#define QSPI_FLASH_SIZE 23 /* Address bus width to access whole memory space */
|
||||||
|
#define QSPI_SECTOR_SIZE 0x1000 /* 4kBytes */
|
||||||
|
#define QSPI_PAGE_SIZE 256
|
||||||
|
|
||||||
|
/* This alias is added as the name of Memory mapped fucntion changed */
|
||||||
|
#define BSP_QSPI_MemoryMappedMode BSP_QSPI_EnableMemoryMappedMode
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Exported types ------------------------------------------------------------*/
|
||||||
|
/** @defgroup STM32746G_DISCOVERY_QSPI_Exported_Types STM32746G_DISCOVERY_QSPI Exported Types
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
/* QSPI Info */
|
||||||
|
typedef struct {
|
||||||
|
uint32_t FlashSize; /*!< Size of the flash */
|
||||||
|
uint32_t EraseSectorSize; /*!< Size of sectors for the erase operation */
|
||||||
|
uint32_t EraseSectorsNumber; /*!< Number of sectors for the erase operation */
|
||||||
|
uint32_t ProgPageSize; /*!< Size of pages for the program operation */
|
||||||
|
uint32_t ProgPagesNumber; /*!< Number of pages for the program operation */
|
||||||
|
} QSPI_Info;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* Exported functions --------------------------------------------------------*/
|
||||||
|
/** @addtogroup STM32746G_DISCOVERY_QSPI_Exported_Functions
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
uint8_t BSP_QSPI_Init (void);
|
||||||
|
uint8_t BSP_QSPI_DeInit (void);
|
||||||
|
uint8_t BSP_QSPI_Read (uint8_t* pData, uint32_t ReadAddr, uint32_t Size);
|
||||||
|
uint8_t BSP_QSPI_Write (uint8_t* pData, uint32_t WriteAddr, uint32_t Size);
|
||||||
|
uint8_t BSP_QSPI_Erase_Block(uint32_t BlockAddress);
|
||||||
|
uint8_t BSP_QSPI_EraseSector(uint32_t EraseStartAddress, uint32_t EraseEndAddress);
|
||||||
|
uint8_t BSP_QSPI_Erase_Chip (void);
|
||||||
|
uint8_t BSP_QSPI_GetStatus (void);
|
||||||
|
uint8_t BSP_QSPI_GetInfo (QSPI_Info* pInfo);
|
||||||
|
uint8_t BSP_QSPI_EnableMemoryMappedMode(void);
|
||||||
|
|
||||||
|
/* These functions can be modified in case the current settings
|
||||||
|
need to be changed for specific application needs */
|
||||||
|
void BSP_QSPI_MspInit(QSPI_HandleTypeDef *hqspi, void *Params);
|
||||||
|
void BSP_QSPI_MspDeInit(QSPI_HandleTypeDef *hqspi, void *Params);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* __STM32746G_DISCOVERY_QSPI_H */
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||||
237
system_clock.c
Normal file
237
system_clock.c
Normal file
@@ -0,0 +1,237 @@
|
|||||||
|
/* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2006-2019 ARM Limited
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file configures the system clock as follows:
|
||||||
|
*--------------------------------------------------------------------
|
||||||
|
* System clock source | 1- USE_PLL_HSE_EXTC (external 8 MHz clock)
|
||||||
|
* | 2- USE_PLL_HSE_XTAL (external 8 MHz xtal)
|
||||||
|
* | 3- USE_PLL_HSI (internal 16 MHz clock)
|
||||||
|
*--------------------------------------------------------------------
|
||||||
|
* SYSCLK(MHz) | 216
|
||||||
|
* AHBCLK (MHz) | 216
|
||||||
|
* APB1CLK (MHz) | 54
|
||||||
|
* APB2CLK (MHz) | 108
|
||||||
|
* USB capable (48 MHz) | YES
|
||||||
|
*--------------------------------------------------------------------
|
||||||
|
**/
|
||||||
|
|
||||||
|
#include "stm32f7xx.h"
|
||||||
|
#include "mbed_error.h"
|
||||||
|
|
||||||
|
// clock source is selected with CLOCK_SOURCE in json config
|
||||||
|
#define USE_PLL_HSE_EXTC 0x8 // Use external clock (ST Link MCO)
|
||||||
|
#define USE_PLL_HSE_XTAL 0x4 // Use external xtal (X3 on board - not provided by default)
|
||||||
|
#define USE_PLL_HSI 0x2 // Use HSI internal clock
|
||||||
|
uint8_t hsi_state = 2;
|
||||||
|
|
||||||
|
#if (((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC))
|
||||||
|
|
||||||
|
uint8_t SetSysClock_PLL_HSE(uint8_t bypass);
|
||||||
|
|
||||||
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) */
|
||||||
|
|
||||||
|
#if ((CLOCK_SOURCE) & USE_PLL_HSI)
|
||||||
|
|
||||||
|
uint8_t SetSysClock_PLL_HSI(void);
|
||||||
|
|
||||||
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configures the System clock source, PLL Multiplier and Divider factors,
|
||||||
|
* AHB/APBx prescalers and Flash settings
|
||||||
|
* @note This function should be called only once the RCC clock configuration
|
||||||
|
* is reset to the default reset state (done in SystemInit() function).
|
||||||
|
* @param None
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
|
||||||
|
void SetSysClock(void) {
|
||||||
|
#if ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC)
|
||||||
|
/* 1- Try to start with HSE and external clock */
|
||||||
|
if (SetSysClock_PLL_HSE(1) == 0)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
#if ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL)
|
||||||
|
/* 2- If fail try to start with HSE and external xtal */
|
||||||
|
if (SetSysClock_PLL_HSE(0) == 0)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
#if ((CLOCK_SOURCE) & USE_PLL_HSI)
|
||||||
|
/* 3- If fail start with HSI clock */
|
||||||
|
if (SetSysClock_PLL_HSI() == 0)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
{
|
||||||
|
error("SetSysClock failed\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Output clock on MCO2 pin(PC9) for debugging purpose
|
||||||
|
// Can be visualized on CN8 connector pin 4
|
||||||
|
//HAL_RCC_MCOConfig(RCC_MCO2, RCC_MCO2SOURCE_SYSCLK, RCC_MCODIV_4); // 216 MHz / 4 = 54 MHz
|
||||||
|
}
|
||||||
|
|
||||||
|
#if (((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC))
|
||||||
|
/******************************************************************************/
|
||||||
|
/* PLL (clocked by HSE) used as System clock source */
|
||||||
|
/******************************************************************************/
|
||||||
|
uint8_t SetSysClock_PLL_HSE(uint8_t bypass) {
|
||||||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct;
|
||||||
|
RCC_OscInitTypeDef RCC_OscInitStruct;
|
||||||
|
RCC_PeriphCLKInitTypeDef RCC_PeriphClkInitStruct;
|
||||||
|
|
||||||
|
// Enable power clock
|
||||||
|
__PWR_CLK_ENABLE();
|
||||||
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
|
||||||
|
|
||||||
|
// Select HSI as system clock source to allow modification of the PLL configuration
|
||||||
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_SYSCLK;
|
||||||
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI;
|
||||||
|
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0);
|
||||||
|
|
||||||
|
// Enable HSE oscillator and activate PLL with HSE as source
|
||||||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
|
||||||
|
if (bypass == 0) {
|
||||||
|
RCC_OscInitStruct.HSEState = RCC_HSE_ON; /* External xtal on OSC_IN/OSC_OUT */
|
||||||
|
} else {
|
||||||
|
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS; /* External clock on OSC_IN */
|
||||||
|
}
|
||||||
|
// Warning: this configuration is for a 8 MHz xtal clock only
|
||||||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
||||||
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
|
||||||
|
RCC_OscInitStruct.PLL.PLLM = 4; // VCO input clock = 2 MHz (8 MHz / 4)
|
||||||
|
RCC_OscInitStruct.PLL.PLLN = 216; // VCO output clock = 432 MHz (2 MHz * 216)
|
||||||
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; // PLLCLK = 216 MHz (432 MHz / 2)
|
||||||
|
RCC_OscInitStruct.PLL.PLLQ = 9; // USB clock = 48 MHz (432 MHz / 9) --> OK for USB
|
||||||
|
|
||||||
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
// Activate the OverDrive to reach the 216 MHz Frequency
|
||||||
|
if (HAL_PWREx_EnableOverDrive() != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
// Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers
|
||||||
|
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 |
|
||||||
|
RCC_CLOCKTYPE_PCLK2);
|
||||||
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; // 216 MHz
|
||||||
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; // 216 MHz
|
||||||
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4; // 54 MHz
|
||||||
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2; // 108 MHz
|
||||||
|
|
||||||
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_9) != HAL_OK) {
|
||||||
|
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
RCC_PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_CLK48;
|
||||||
|
RCC_PeriphClkInitStruct.Clk48ClockSelection = RCC_CLK48SOURCE_PLL;
|
||||||
|
if (HAL_RCCEx_PeriphCLKConfig(&RCC_PeriphClkInitStruct) != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
HAL_RCC_EnableCSS();
|
||||||
|
hsi_state = 1;
|
||||||
|
return 1; // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) */
|
||||||
|
|
||||||
|
#if ((CLOCK_SOURCE) & USE_PLL_HSI)
|
||||||
|
/******************************************************************************/
|
||||||
|
/* PLL (clocked by HSI) used as System clock source */
|
||||||
|
/******************************************************************************/
|
||||||
|
uint8_t SetSysClock_PLL_HSI(void) {
|
||||||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct;
|
||||||
|
RCC_OscInitTypeDef RCC_OscInitStruct;
|
||||||
|
RCC_PeriphCLKInitTypeDef RCC_PeriphClkInitStruct;
|
||||||
|
|
||||||
|
// Enable power clock
|
||||||
|
__PWR_CLK_ENABLE();
|
||||||
|
|
||||||
|
// Select HSI as system clock source to allow modification of the PLL configuration
|
||||||
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_SYSCLK;
|
||||||
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI;
|
||||||
|
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0);
|
||||||
|
|
||||||
|
// Enable HSI oscillator and activate PLL with HSI as source
|
||||||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
|
||||||
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
||||||
|
RCC_OscInitStruct.HSEState = RCC_HSE_OFF;
|
||||||
|
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
|
||||||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
||||||
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
|
||||||
|
RCC_OscInitStruct.PLL.PLLM = 8; // VCO input clock = 2 MHz (16 MHz / 8)
|
||||||
|
RCC_OscInitStruct.PLL.PLLN = 216; // VCO output clock = 432 MHz (2 MHz * 216)
|
||||||
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; // PLLCLK = 216 MHz (432 MHz / 2)
|
||||||
|
RCC_OscInitStruct.PLL.PLLQ = 9;
|
||||||
|
|
||||||
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
// Activate the OverDrive to reach the 216 MHz Frequency
|
||||||
|
if (HAL_PWREx_EnableOverDrive() != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
// Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers
|
||||||
|
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 |
|
||||||
|
RCC_CLOCKTYPE_PCLK2);
|
||||||
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; // 216 MHz
|
||||||
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; // 216 MHz
|
||||||
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4; // 54 MHz
|
||||||
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2; // 108 MHz
|
||||||
|
|
||||||
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_7) != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
|
||||||
|
RCC_PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_CLK48;
|
||||||
|
RCC_PeriphClkInitStruct.Clk48ClockSelection = RCC_CLK48SOURCE_PLL;
|
||||||
|
if (HAL_RCCEx_PeriphCLKConfig(&RCC_PeriphClkInitStruct) != HAL_OK) {
|
||||||
|
return 0; // FAIL
|
||||||
|
}
|
||||||
|
hsi_state = 0;
|
||||||
|
return 1; // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief RCC Clock Security System interrupt callback
|
||||||
|
* @retval None
|
||||||
|
*/
|
||||||
|
void HAL_RCC_CSSCallback(void) {
|
||||||
|
SetSysClock();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This function handles Non maskable interrupt.
|
||||||
|
*/
|
||||||
|
void NMI_Handler(void) {
|
||||||
|
HAL_RCC_NMI_IRQHandler();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user