Sergey Terentiev
2 years ago
87 changed files with 3423 additions and 548 deletions
@ -0,0 +1,350 @@ |
|||||
|
/**
|
||||
|
* Marlin 3D Printer Firmware |
||||
|
* Copyright (c) 2022 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||
|
* |
||||
|
* Based on Sprinter and grbl. |
||||
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
* |
||||
|
*/ |
||||
|
#pragma once |
||||
|
|
||||
|
//#define BOARD_CUSTOM_BUILD_FLAGS -DTONE_CHANNEL=4 -DTONE_TIMER=4 -DTIMER_TONE=4
|
||||
|
|
||||
|
#include "env_validate.h" |
||||
|
|
||||
|
#if HOTENDS > 1 || E_STEPPERS > 1 |
||||
|
#error "BTT SKR Mini E3 V3.0.1 supports up to 1 hotend / E stepper." |
||||
|
#endif |
||||
|
|
||||
|
#ifndef BOARD_INFO_NAME |
||||
|
#define BOARD_INFO_NAME "BTT SKR Mini E3 V3.0.1" |
||||
|
#endif |
||||
|
|
||||
|
#define USES_DIAG_JUMPERS |
||||
|
|
||||
|
// Ignore temp readings during development.
|
||||
|
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
||||
|
|
||||
|
#ifndef NEOPIXEL_LED |
||||
|
#define LED_PIN PA14 |
||||
|
#endif |
||||
|
|
||||
|
// Onboard I2C EEPROM
|
||||
|
#if EITHER(NO_EEPROM_SELECTED, I2C_EEPROM) |
||||
|
#undef NO_EEPROM_SELECTED |
||||
|
#define I2C_EEPROM |
||||
|
#define SOFT_I2C_EEPROM // Force the use of Software I2C
|
||||
|
#define I2C_SCL_PIN PB8 |
||||
|
#define I2C_SDA_PIN PB9 |
||||
|
#define MARLIN_EEPROM_SIZE 0x1000 // 4KB
|
||||
|
#endif |
||||
|
|
||||
|
//
|
||||
|
// Servos
|
||||
|
//
|
||||
|
#define SERVO0_PIN PA0 // SERVOS
|
||||
|
|
||||
|
//
|
||||
|
// Limit Switches
|
||||
|
//
|
||||
|
#define X_STOP_PIN PB5 // X-STOP
|
||||
|
#define Y_STOP_PIN PB6 // Y-STOP
|
||||
|
#define Z_STOP_PIN PB7 // Z-STOP
|
||||
|
|
||||
|
//
|
||||
|
// Z Probe must be this pin
|
||||
|
//
|
||||
|
#define Z_MIN_PROBE_PIN PA1 // PROBE
|
||||
|
|
||||
|
//
|
||||
|
// Filament Runout Sensor
|
||||
|
//
|
||||
|
#ifndef FIL_RUNOUT_PIN |
||||
|
#define FIL_RUNOUT_PIN PC15 // E0-STOP
|
||||
|
#endif |
||||
|
|
||||
|
//
|
||||
|
// Power-loss Detection
|
||||
|
//
|
||||
|
#ifndef POWER_LOSS_PIN |
||||
|
#define POWER_LOSS_PIN PC13 // Power Loss Detection: PWR-DET
|
||||
|
#endif |
||||
|
|
||||
|
#ifndef NEOPIXEL_PIN |
||||
|
#define NEOPIXEL_PIN PA14 // LED driving pin
|
||||
|
#endif |
||||
|
|
||||
|
#ifndef PS_ON_PIN |
||||
|
#define PS_ON_PIN PC14 // Power Supply Control
|
||||
|
#endif |
||||
|
|
||||
|
//
|
||||
|
// Steppers
|
||||
|
//
|
||||
|
#define X_ENABLE_PIN PC10 |
||||
|
#define X_STEP_PIN PC11 |
||||
|
#define X_DIR_PIN PC12 |
||||
|
|
||||
|
#define Y_ENABLE_PIN PB13 |
||||
|
#define Y_STEP_PIN PB12 |
||||
|
#define Y_DIR_PIN PB10 |
||||
|
|
||||
|
#define Z_ENABLE_PIN PB2 |
||||
|
#define Z_STEP_PIN PB1 |
||||
|
#define Z_DIR_PIN PB0 |
||||
|
|
||||
|
#define E0_ENABLE_PIN PC3 |
||||
|
#define E0_STEP_PIN PC2 |
||||
|
#define E0_DIR_PIN PC1 |
||||
|
|
||||
|
#if HAS_TMC_UART |
||||
|
/**
|
||||
|
* TMC220x stepper drivers |
||||
|
* Hardware serial communication ports |
||||
|
*/ |
||||
|
#define X_HARDWARE_SERIAL MSerial6 |
||||
|
#define Y_HARDWARE_SERIAL MSerial6 |
||||
|
#define Z_HARDWARE_SERIAL MSerial6 |
||||
|
#define E0_HARDWARE_SERIAL MSerial6 |
||||
|
|
||||
|
// Default TMC slave addresses
|
||||
|
#ifndef X_SLAVE_ADDRESS |
||||
|
#define X_SLAVE_ADDRESS 0 |
||||
|
#endif |
||||
|
#ifndef Y_SLAVE_ADDRESS |
||||
|
#define Y_SLAVE_ADDRESS 2 |
||||
|
#endif |
||||
|
#ifndef Z_SLAVE_ADDRESS |
||||
|
#define Z_SLAVE_ADDRESS 1 |
||||
|
#endif |
||||
|
#ifndef E0_SLAVE_ADDRESS |
||||
|
#define E0_SLAVE_ADDRESS 3 |
||||
|
#endif |
||||
|
#endif |
||||
|
|
||||
|
//
|
||||
|
// Temperature Sensors
|
||||
|
//
|
||||
|
#define TEMP_0_PIN PC5 // Analog Input "TH0"
|
||||
|
#define TEMP_BED_PIN PC4 // Analog Input "TB0"
|
||||
|
|
||||
|
//
|
||||
|
// Heaters / Fans
|
||||
|
//
|
||||
|
#define HEATER_0_PIN PA15 // "HE"
|
||||
|
#define HEATER_BED_PIN PB3 // "HB"
|
||||
|
#define FAN_PIN PC9 // "FAN0"
|
||||
|
#define FAN1_PIN PA8 // "FAN1"
|
||||
|
#define FAN2_PIN PC8 // "FAN2"
|
||||
|
|
||||
|
/**
|
||||
|
* SKR Mini E3 V3.0.1 |
||||
|
* ------ |
||||
|
* (BEEPER) PB15 | 1 2 | PB14 (BTN_ENC) |
||||
|
* (BTN_EN1) PA9 | 3 4 | RESET |
||||
|
* (BTN_EN2) PA10 5 6 | PB4 (LCD_D4) |
||||
|
* (LCD_RS) PD2 | 7 8 | PC0 (LCD_EN) |
||||
|
* GND | 9 10 | 5V |
||||
|
* ------ |
||||
|
* EXP1 |
||||
|
*/ |
||||
|
#define EXP1_01_PIN PB15 |
||||
|
#define EXP1_02_PIN PB14 |
||||
|
#define EXP1_03_PIN PA9 |
||||
|
#define EXP1_04_PIN -1 // RESET
|
||||
|
#define EXP1_05_PIN PA10 |
||||
|
#define EXP1_06_PIN PB4 |
||||
|
#define EXP1_07_PIN PD2 |
||||
|
#define EXP1_08_PIN PC0 |
||||
|
|
||||
|
#if HAS_DWIN_E3V2 || IS_DWIN_MARLINUI |
||||
|
/**
|
||||
|
* ------ ------ ------ |
||||
|
* (ENT) | 1 2 | (BEEP) |10 9 | |10 9 | |
||||
|
* (RX) | 3 4 | (RX) | 8 7 | (TX) RX | 8 7 | TX |
||||
|
* (TX) 5 6 | (ENT) 6 5 | (BEEP) ENT | 6 5 | BEEP |
||||
|
* (B) | 7 8 | (A) (B) | 4 3 | (A) B | 4 3 | A |
||||
|
* GND | 9 10 | (VCC) GND | 2 1 | VCC GND | 2 1 | VCC |
||||
|
* ------ ------ ------ |
||||
|
* EXP1 DWIN DWIN (plug) |
||||
|
* |
||||
|
* All pins are labeled as printed on DWIN PCB. Connect TX-TX, A-A and so on. |
||||
|
*/ |
||||
|
|
||||
|
#error "DWIN_CREALITY_LCD requires a custom cable, see diagram above this line. Comment out this line to continue." |
||||
|
|
||||
|
#define BEEPER_PIN EXP1_02_PIN |
||||
|
#define BTN_EN1 EXP1_08_PIN |
||||
|
#define BTN_EN2 EXP1_07_PIN |
||||
|
#define BTN_ENC EXP1_01_PIN |
||||
|
|
||||
|
#elif HAS_WIRED_LCD |
||||
|
|
||||
|
#if ENABLED(CR10_STOCKDISPLAY) |
||||
|
|
||||
|
#define BEEPER_PIN EXP1_01_PIN |
||||
|
#define BTN_ENC EXP1_02_PIN |
||||
|
|
||||
|
#define BTN_EN1 EXP1_03_PIN |
||||
|
#define BTN_EN2 EXP1_05_PIN |
||||
|
|
||||
|
#define LCD_PINS_RS EXP1_07_PIN |
||||
|
#define LCD_PINS_ENABLE EXP1_08_PIN |
||||
|
#define LCD_PINS_D4 EXP1_06_PIN |
||||
|
|
||||
|
#elif ENABLED(ZONESTAR_LCD) // ANET A8 LCD Controller - Must convert to 3.3V - CONNECTING TO 5V WILL DAMAGE THE BOARD!
|
||||
|
|
||||
|
#ifndef NO_CONTROLLER_CUSTOM_WIRING_WARNING |
||||
|
#error "CAUTION! ZONESTAR_LCD requires wiring modifications. See 'pins_BTT_SKR_MINI_E3_common.h' for details. (Define NO_CONTROLLER_CUSTOM_WIRING_WARNING to suppress this warning.)" |
||||
|
#endif |
||||
|
|
||||
|
#define LCD_PINS_RS EXP1_06_PIN |
||||
|
#define LCD_PINS_ENABLE EXP1_02_PIN |
||||
|
#define LCD_PINS_D4 EXP1_07_PIN |
||||
|
#define LCD_PINS_D5 EXP1_05_PIN |
||||
|
#define LCD_PINS_D6 EXP1_03_PIN |
||||
|
#define LCD_PINS_D7 EXP1_01_PIN |
||||
|
#define ADC_KEYPAD_PIN PA1 // Repurpose servo pin for ADC - CONNECTING TO 5V WILL DAMAGE THE BOARD!
|
||||
|
|
||||
|
#elif EITHER(MKS_MINI_12864, ENDER2_STOCKDISPLAY) |
||||
|
|
||||
|
#define BTN_ENC EXP1_02_PIN |
||||
|
#define BTN_EN1 EXP1_03_PIN |
||||
|
#define BTN_EN2 EXP1_05_PIN |
||||
|
|
||||
|
#define DOGLCD_CS EXP1_07_PIN |
||||
|
#define DOGLCD_A0 EXP1_06_PIN |
||||
|
#define DOGLCD_SCK EXP1_01_PIN |
||||
|
#define DOGLCD_MOSI EXP1_08_PIN |
||||
|
|
||||
|
#define FORCE_SOFT_SPI |
||||
|
#define LCD_BACKLIGHT_PIN -1 |
||||
|
|
||||
|
#elif IS_TFTGLCD_PANEL |
||||
|
|
||||
|
#if ENABLED(TFTGLCD_PANEL_SPI) |
||||
|
|
||||
|
#ifndef NO_CONTROLLER_CUSTOM_WIRING_WARNING |
||||
|
#error "CAUTION! TFTGLCD_PANEL_SPI requires wiring modifications. See 'pins_BTT_SKR_MINI_E3_common.h' for details. (Define NO_CONTROLLER_CUSTOM_WIRING_WARNING to suppress this warning.)" |
||||
|
#endif |
||||
|
|
||||
|
/**
|
||||
|
* TFTGLCD_PANEL_SPI display pinout |
||||
|
* |
||||
|
* Board Display |
||||
|
* ------ ------ |
||||
|
* (BEEPER) PB6 | 1 2 | PB15 (SD_DET) 5V |10 9 | GND |
||||
|
* RESET | 3 4 | PA9 (MOD_RESET) -- | 8 7 | (SD_DET) |
||||
|
* PB4 5 6 | PA10 (SD_CS) (MOSI) | 6 5 | -- |
||||
|
* PB7 | 7 8 | PD2 (LCD_CS) (SD_CS) | 4 3 | (LCD_CS) |
||||
|
* GND | 9 10 | 5V (SCK) | 2 1 | (MISO) |
||||
|
* ------ ------ |
||||
|
* EXP1 EXP1 |
||||
|
* |
||||
|
* Needs custom cable: |
||||
|
* |
||||
|
* Board Display |
||||
|
* |
||||
|
* EXP1-10 ---------- EXP1-10 |
||||
|
* EXP1-9 ----------- EXP1-9 |
||||
|
* SPI1-4 ----------- EXP1-6 |
||||
|
* EXP1-7 ----------- FREE |
||||
|
* SPI1-3 ----------- EXP1-2 |
||||
|
* EXP1-5 ----------- EXP1-4 |
||||
|
* EXP1-4 ----------- FREE |
||||
|
* EXP1-3 ----------- EXP1-3 |
||||
|
* SPI1-1 ----------- EXP1-1 |
||||
|
* EXP1-1 ----------- EXP1-7 |
||||
|
*/ |
||||
|
|
||||
|
#define TFTGLCD_CS EXP1_03_PIN |
||||
|
|
||||
|
#endif |
||||
|
|
||||
|
#else |
||||
|
#error "Only CR10_STOCKDISPLAY, ZONESTAR_LCD, ENDER2_STOCKDISPLAY, MKS_MINI_12864, and TFTGLCD_PANEL_(SPI|I2C) are currently supported on the BIGTREE_SKR_MINI_E3." |
||||
|
#endif |
||||
|
|
||||
|
#endif // HAS_WIRED_LCD
|
||||
|
|
||||
|
#if BOTH(TOUCH_UI_FTDI_EVE, LCD_FYSETC_TFT81050) |
||||
|
|
||||
|
#ifndef NO_CONTROLLER_CUSTOM_WIRING_WARNING |
||||
|
#error "CAUTION! LCD_FYSETC_TFT81050 requires wiring modifications. See 'pins_BTT_SKR_MINI_E3_common.h' for details. (Define NO_CONTROLLER_CUSTOM_WIRING_WARNING to suppress this warning.)" |
||||
|
#endif |
||||
|
|
||||
|
/**
|
||||
|
* FYSETC TFT TFT81050 display pinout |
||||
|
* |
||||
|
* Board Display |
||||
|
* ------ ------ |
||||
|
* (SD_DET) PB15 | 1 2 | PB6 (BEEPER) 5V |10 9 | GND |
||||
|
* (MOD_RESET) PA9 | 3 4 | RESET (RESET) | 8 7 | (SD_DET) |
||||
|
* (SD_CS) PA10 5 6 | PB4 (FREE) (MOSI) | 6 5 | (LCD_CS) |
||||
|
* (LCD_CS) PD2 | 7 8 | PB7 (FREE) (SD_CS) | 4 3 | (MOD_RESET) |
||||
|
* 5V | 9 10 | GND (SCK) | 2 1 | (MISO) |
||||
|
* ------ ------ |
||||
|
* EXP1 EXP1 |
||||
|
* |
||||
|
* Needs custom cable: |
||||
|
* |
||||
|
* Board Adapter Display |
||||
|
* _________ |
||||
|
* EXP1-10 ---------- EXP1-10 |
||||
|
* EXP1-9 ----------- EXP1-9 |
||||
|
* SPI1-4 ----------- EXP1-6 |
||||
|
* EXP1-7 ----------- EXP1-5 |
||||
|
* SPI1-3 ----------- EXP1-2 |
||||
|
* EXP1-5 ----------- EXP1-4 |
||||
|
* EXP1-4 ----------- EXP1-8 |
||||
|
* EXP1-3 ----------- EXP1-3 |
||||
|
* SPI1-1 ----------- EXP1-1 |
||||
|
* EXP1-1 ----------- EXP1-7 |
||||
|
*/ |
||||
|
|
||||
|
#define CLCD_SPI_BUS 1 // SPI1 connector
|
||||
|
|
||||
|
#define BEEPER_PIN EXP1_02_PIN |
||||
|
|
||||
|
#define CLCD_MOD_RESET EXP1_03_PIN |
||||
|
#define CLCD_SPI_CS EXP1_07_PIN |
||||
|
|
||||
|
#endif // TOUCH_UI_FTDI_EVE && LCD_FYSETC_TFT81050
|
||||
|
|
||||
|
//
|
||||
|
// SD Support
|
||||
|
//
|
||||
|
|
||||
|
#ifndef SDCARD_CONNECTION |
||||
|
#define SDCARD_CONNECTION ONBOARD |
||||
|
#endif |
||||
|
|
||||
|
#if SD_CONNECTION_IS(LCD) && (BOTH(TOUCH_UI_FTDI_EVE, LCD_FYSETC_TFT81050) || IS_TFTGLCD_PANEL) |
||||
|
#define SD_DETECT_PIN EXP1_01_PIN |
||||
|
#define SD_SS_PIN EXP1_05_PIN |
||||
|
#elif SD_CONNECTION_IS(CUSTOM_CABLE) |
||||
|
#error "SD CUSTOM_CABLE is not compatible with SKR Mini E3." |
||||
|
#endif |
||||
|
|
||||
|
#define ONBOARD_SPI_DEVICE 1 // SPI1 -> used only by HAL/STM32F1...
|
||||
|
#define ONBOARD_SD_CS_PIN PA4 // Chip select for "System" SD card
|
||||
|
|
||||
|
#define ENABLE_SPI1 |
||||
|
#define SDSS ONBOARD_SD_CS_PIN |
||||
|
#define SD_SS_PIN ONBOARD_SD_CS_PIN |
||||
|
#define SD_SCK_PIN PA5 |
||||
|
#define SD_MISO_PIN PA6 |
||||
|
#define SD_MOSI_PIN PA7 |
@ -0,0 +1,206 @@ |
|||||
|
/**
|
||||
|
* Marlin 3D Printer Firmware |
||||
|
* Copyright (c) 2022 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||
|
* |
||||
|
* Based on Sprinter and grbl. |
||||
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
* |
||||
|
*/ |
||||
|
#pragma once |
||||
|
|
||||
|
/**
|
||||
|
* STM32F407VET6 on Opulo Lumen PnP Rev3 |
||||
|
* Website - https://opulo.io/
|
||||
|
*/ |
||||
|
|
||||
|
#define ALLOW_STM32DUINO |
||||
|
#include "env_validate.h" |
||||
|
|
||||
|
#define BOARD_INFO_NAME "LumenPnP Motherboard REV04" |
||||
|
#define DEFAULT_MACHINE_NAME "LumenPnP" |
||||
|
|
||||
|
/**
|
||||
|
* By default, the extra stepper motor configuration is: |
||||
|
* I = Left Head |
||||
|
* J = Right Head |
||||
|
* K = Auxiliary (Conveyor belt) |
||||
|
*/ |
||||
|
|
||||
|
#define SRAM_EEPROM_EMULATION |
||||
|
#define MARLIN_EEPROM_SIZE 0x2000 // 8K
|
||||
|
|
||||
|
// I2C MCP3426 (16-Bit, 240SPS, dual-channel ADC)
|
||||
|
#define HAS_MCP3426_ADC |
||||
|
|
||||
|
//
|
||||
|
// Servos
|
||||
|
//
|
||||
|
#define SERVO0_PIN PB10 |
||||
|
#define SERVO1_PIN PB11 |
||||
|
|
||||
|
//
|
||||
|
// Limit Switches
|
||||
|
//
|
||||
|
#define X_STOP_PIN PC6 |
||||
|
#define Y_STOP_PIN PD15 |
||||
|
#define Z_STOP_PIN PD14 |
||||
|
|
||||
|
// None of these require limit switches by default, so we leave these commented
|
||||
|
// here for your reference.
|
||||
|
//#define I_MIN_PIN PA8
|
||||
|
//#define I_MAX_PIN PA8
|
||||
|
//#define J_MIN_PIN PD13
|
||||
|
//#define J_MAX_PIN PD13
|
||||
|
//#define K_MIN_PIN PC9
|
||||
|
//#define K_MAX_PIN PC9
|
||||
|
|
||||
|
//
|
||||
|
// Steppers
|
||||
|
//
|
||||
|
#define X_STEP_PIN PB15 |
||||
|
#define X_DIR_PIN PB14 |
||||
|
#define X_ENABLE_PIN PD9 |
||||
|
|
||||
|
#define Y_STEP_PIN PE15 |
||||
|
#define Y_DIR_PIN PE14 |
||||
|
#define Y_ENABLE_PIN PB13 |
||||
|
|
||||
|
#define Z_STEP_PIN PE7 |
||||
|
#define Z_DIR_PIN PB1 |
||||
|
#define Z_ENABLE_PIN PE9 |
||||
|
|
||||
|
#define I_STEP_PIN PC4 |
||||
|
#define I_DIR_PIN PA4 |
||||
|
#define I_ENABLE_PIN PB0 |
||||
|
|
||||
|
#define J_STEP_PIN PE11 |
||||
|
#define J_DIR_PIN PE10 |
||||
|
#define J_ENABLE_PIN PE13 |
||||
|
|
||||
|
#define K_STEP_PIN PD6 |
||||
|
#define K_DIR_PIN PD7 |
||||
|
#define K_ENABLE_PIN PA3 |
||||
|
|
||||
|
#if HAS_TMC_SPI |
||||
|
/**
|
||||
|
* Make sure to configure the jumpers on the back side of the Mobo according to |
||||
|
* this diagram: https://github.com/MarlinFirmware/Marlin/pull/23851
|
||||
|
*/ |
||||
|
#error "SPI drivers require a custom jumper configuration, see comment above! Comment out this line to continue." |
||||
|
|
||||
|
#if AXIS_HAS_SPI(X) |
||||
|
#define X_CS_PIN PD8 |
||||
|
#endif |
||||
|
#if AXIS_HAS_SPI(Y) |
||||
|
#define Y_CS_PIN PB12 |
||||
|
#endif |
||||
|
#if AXIS_HAS_SPI(Z) |
||||
|
#define Z_CS_PIN PE8 |
||||
|
#endif |
||||
|
#if AXIS_HAS_SPI(I) |
||||
|
#define I_CS_PIN PC5 |
||||
|
#endif |
||||
|
#if AXIS_HAS_SPI(J) |
||||
|
#define J_CS_PIN PE12 |
||||
|
#endif |
||||
|
#if AXIS_HAS_SPI(K) |
||||
|
#define K_CS_PIN PA2 |
||||
|
#endif |
||||
|
|
||||
|
#elif HAS_TMC_UART |
||||
|
|
||||
|
#define X_SERIAL_TX_PIN PD8 |
||||
|
#define X_SERIAL_RX_PIN X_SERIAL_TX_PIN |
||||
|
|
||||
|
#define Y_SERIAL_TX_PIN PB12 |
||||
|
#define Y_SERIAL_RX_PIN Y_SERIAL_TX_PIN |
||||
|
|
||||
|
#define Z_SERIAL_TX_PIN PE8 |
||||
|
#define Z_SERIAL_RX_PIN Z_SERIAL_TX_PIN |
||||
|
|
||||
|
#define I_SERIAL_TX_PIN PC5 |
||||
|
#define I_SERIAL_RX_PIN I_SERIAL_TX_PIN |
||||
|
|
||||
|
#define J_SERIAL_TX_PIN PE12 |
||||
|
#define J_SERIAL_RX_PIN J_SERIAL_TX_PIN |
||||
|
|
||||
|
#define K_SERIAL_TX_PIN PA2 |
||||
|
#define K_SERIAL_RX_PIN K_SERIAL_TX_PIN |
||||
|
|
||||
|
// Reduce baud rate to improve software serial reliability
|
||||
|
#define TMC_BAUD_RATE 19200 |
||||
|
|
||||
|
#endif |
||||
|
|
||||
|
//
|
||||
|
// Heaters / Fans
|
||||
|
//
|
||||
|
#define FAN_PIN PE2 |
||||
|
#define FAN1_PIN PE3 |
||||
|
#define FAN2_PIN PE4 |
||||
|
#define FAN3_PIN PE5 |
||||
|
|
||||
|
#define FAN_SOFT_PWM_REQUIRED |
||||
|
|
||||
|
//
|
||||
|
// Neopixel
|
||||
|
//
|
||||
|
#define NEOPIXEL_PIN PC7 |
||||
|
#define NEOPIXEL2_PIN PC8 |
||||
|
|
||||
|
//
|
||||
|
// SPI
|
||||
|
//
|
||||
|
#define MISO_PIN PB4 |
||||
|
#define MOSI_PIN PB5 |
||||
|
#define SCK_PIN PB3 |
||||
|
|
||||
|
#define TMC_SW_MISO MISO_PIN |
||||
|
#define TMC_SW_MOSI MOSI_PIN |
||||
|
#define TMC_SW_SCK SCK_PIN |
||||
|
|
||||
|
//
|
||||
|
// I2C
|
||||
|
//
|
||||
|
#define I2C_SDA_PIN PB7 |
||||
|
#define I2C_SCL_PIN PB6 |
||||
|
|
||||
|
/**
|
||||
|
* The index mobo rev03 has 3 aux ports. We define them here so they may be used |
||||
|
* in other places and to make sure someone doesn't have to go look up the pinout |
||||
|
* in the board files. Each 12 pin aux port has this pinout: |
||||
|
* |
||||
|
* VDC 1 2 GND |
||||
|
* 3.3V 3 4 SCL (I2C_SCL_PIN) |
||||
|
* PWM1 5 6 SDA (I2C_SDA_PIN) |
||||
|
* PWM2 7 8 CIPO (MISO_PIN) |
||||
|
* A1 9 10 COPI (MOSI_PIN) |
||||
|
* A2 11 12 SCK (SCK_PIN) |
||||
|
*/ |
||||
|
#define LUMEN_AUX1_PWM1 PA15 |
||||
|
#define LUMEN_AUX1_PWM2 PA5 |
||||
|
#define LUMEN_AUX1_A1 PC0 |
||||
|
#define LUMEN_AUX1_A2 PC1 |
||||
|
|
||||
|
#define LUMEN_AUX2_PWM1 PA6 |
||||
|
#define LUMEN_AUX2_PWM2 PA7 |
||||
|
#define LUMEN_AUX2_A1 PC2 |
||||
|
#define LUMEN_AUX2_A2 PC3 |
||||
|
|
||||
|
#define LUMEN_AUX3_PWM1 PB8 |
||||
|
#define LUMEN_AUX3_PWM2 PB9 |
||||
|
#define LUMEN_AUX3_A1 PA0 |
||||
|
#define LUMEN_AUX3_A2 PA1 |
@ -0,0 +1,38 @@ |
|||||
|
{ |
||||
|
"build": { |
||||
|
"core": "stm32", |
||||
|
"cpu": "cortex-m4", |
||||
|
"extra_flags": "-DSTM32F401xC -DSTM32F4xx", |
||||
|
"f_cpu": "84000000L", |
||||
|
"mcu": "stm32f401rct6", |
||||
|
"product_line": "STM32F401xC", |
||||
|
"variant": "MARLIN_F401RC" |
||||
|
}, |
||||
|
"debug": { |
||||
|
"jlink_device": "STM32F401RC", |
||||
|
"openocd_target": "stm32f4x", |
||||
|
"svd_path": "STM32F401x.svd" |
||||
|
}, |
||||
|
"frameworks": [ |
||||
|
"arduino", |
||||
|
"cmsis", |
||||
|
"spl", |
||||
|
"stm32cube", |
||||
|
"libopencm3" |
||||
|
], |
||||
|
"name": "STM32F401RC (64k RAM. 256k Flash)", |
||||
|
"upload": { |
||||
|
"maximum_ram_size": 65536, |
||||
|
"maximum_size": 262144, |
||||
|
"protocol": "serial", |
||||
|
"protocols": [ |
||||
|
"blackmagic", |
||||
|
"dfu", |
||||
|
"jlink", |
||||
|
"serial", |
||||
|
"stlink" |
||||
|
] |
||||
|
}, |
||||
|
"url": "https://www.st.com/en/microcontrollers-microprocessors/stm32f401rc.html", |
||||
|
"vendor": "Generic" |
||||
|
} |
@ -0,0 +1,51 @@ |
|||||
|
{ |
||||
|
"build": { |
||||
|
"core": "stm32", |
||||
|
"cpu": "cortex-m4", |
||||
|
"extra_flags": "-DSTM32F407xx", |
||||
|
"f_cpu": "168000000L", |
||||
|
"hwids": [ |
||||
|
[ |
||||
|
"0x0483", |
||||
|
"0xdf11" |
||||
|
], |
||||
|
[ |
||||
|
"0x1EAF", |
||||
|
"0x0003" |
||||
|
], |
||||
|
[ |
||||
|
"0x0483", |
||||
|
"0x3748" |
||||
|
] |
||||
|
], |
||||
|
"mcu": "stm32f407vet6", |
||||
|
"variant": "MARLIN_F407VE" |
||||
|
}, |
||||
|
"debug": { |
||||
|
"jlink_device": "STM32F407VE", |
||||
|
"openocd_target": "stm32f4x", |
||||
|
"svd_path": "STM32F40x.svd" |
||||
|
}, |
||||
|
"frameworks": [ |
||||
|
"arduino", |
||||
|
"stm32cube" |
||||
|
], |
||||
|
"name": "STM32F407VE (192k RAM. 512k Flash)", |
||||
|
"upload": { |
||||
|
"disable_flushing": false, |
||||
|
"maximum_ram_size": 131072, |
||||
|
"maximum_size": 524288, |
||||
|
"protocol": "dfu", |
||||
|
"protocols": [ |
||||
|
"stlink", |
||||
|
"dfu", |
||||
|
"jlink", |
||||
|
"blackmagic" |
||||
|
], |
||||
|
"require_upload_port": true, |
||||
|
"use_1200bps_touch": false, |
||||
|
"wait_for_upload_port": false |
||||
|
}, |
||||
|
"url": "https://www.st.com/en/microcontrollers-microprocessors/stm32f407ve.html", |
||||
|
"vendor": "Generic" |
||||
|
} |
@ -0,0 +1,256 @@ |
|||||
|
/*
|
||||
|
******************************************************************************* |
||||
|
* Copyright (c) 2020-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 STM32F401R(B-C)Tx.xml, STM32F401R(D-E)Tx.xml |
||||
|
* CubeMX DB release 6.0.30 |
||||
|
*/ |
||||
|
#if !defined(CUSTOM_PERIPHERAL_PINS) |
||||
|
#include "Arduino.h" |
||||
|
#include "PeripheralPins.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. analogWrite(PA7_ALT1, 128);). |
||||
|
* |
||||
|
* - Commented lines are alternative possibilities which are not used per default. |
||||
|
* If you change them, you will have to know what you do |
||||
|
* ===== |
||||
|
*/ |
||||
|
|
||||
|
//*** ADC ***
|
||||
|
|
||||
|
#ifdef HAL_ADC_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_ADC[] = { |
||||
|
{PA_0, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC1_IN0
|
||||
|
{PA_1, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 1, 0)}, // ADC1_IN1
|
||||
|
{PA_2, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // ADC1_IN2
|
||||
|
{PA_3, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC1_IN3
|
||||
|
{PA_4, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC1_IN4
|
||||
|
{PA_5, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC1_IN5
|
||||
|
{PA_6, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC1_IN6
|
||||
|
{PA_7, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 7, 0)}, // ADC1_IN7
|
||||
|
{PB_0, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC1_IN8
|
||||
|
{PB_1, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC1_IN9
|
||||
|
{PC_0, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC1_IN10
|
||||
|
{PC_1, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 11, 0)}, // ADC1_IN11
|
||||
|
{PC_2, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC1_IN12
|
||||
|
{PC_3, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC1_IN13
|
||||
|
{PC_4, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 14, 0)}, // ADC1_IN14
|
||||
|
{PC_5, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 15, 0)}, // ADC1_IN15
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** No DAC ***
|
||||
|
|
||||
|
//*** I2C ***
|
||||
|
|
||||
|
#ifdef HAL_I2C_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_I2C_SDA[] = { |
||||
|
{PB_3, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF9_I2C2)}, |
||||
|
{PB_4, I2C3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF9_I2C3)}, |
||||
|
{PB_7, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_9, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PC_9, I2C3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_I2C_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_I2C_SCL[] = { |
||||
|
{PA_8, I2C3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)}, |
||||
|
{PB_6, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_8, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_10, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** TIM ***
|
||||
|
|
||||
|
#ifdef HAL_TIM_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_TIM[] = { |
||||
|
{PA_0, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||
|
{PA_0_ALT1, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 1, 0)}, // TIM5_CH1
|
||||
|
{PA_1, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 2, 0)}, // TIM2_CH2
|
||||
|
{PA_1_ALT1, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 2, 0)}, // TIM5_CH2
|
||||
|
{PA_2, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 3, 0)}, // TIM2_CH3
|
||||
|
{PA_2_ALT1, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 3, 0)}, // TIM5_CH3
|
||||
|
{PA_2_ALT2, TIM9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM9, 1, 0)}, // TIM9_CH1
|
||||
|
{PA_3, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 4, 0)}, // TIM2_CH4
|
||||
|
{PA_3_ALT1, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 4, 0)}, // TIM5_CH4
|
||||
|
{PA_3_ALT2, TIM9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM9, 2, 0)}, // TIM9_CH2
|
||||
|
{PA_5, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||
|
{PA_6, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||
|
{PA_7, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 1)}, // TIM1_CH1N
|
||||
|
{PA_7_ALT1, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||
|
{PA_8, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 0)}, // TIM1_CH1
|
||||
|
{PA_9, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 0)}, // TIM1_CH2
|
||||
|
{PA_10, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 0)}, // TIM1_CH3
|
||||
|
{PA_11, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 4, 0)}, // TIM1_CH4
|
||||
|
{PA_15, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||
|
{PB_0, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 1)}, // TIM1_CH2N
|
||||
|
{PB_0_ALT1, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 3, 0)}, // TIM3_CH3
|
||||
|
{PB_1, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||
|
{PB_1_ALT1, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
|
||||
|
{PB_3, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 2, 0)}, // TIM2_CH2
|
||||
|
{PB_4, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||
|
{PB_5, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||
|
{PB_6, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 1, 0)}, // TIM4_CH1
|
||||
|
{PB_7, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 2, 0)}, // TIM4_CH2
|
||||
|
{PB_8, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 3, 0)}, // TIM4_CH3
|
||||
|
{PB_8_ALT1, TIM10, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM10, 1, 0)}, // TIM10_CH1
|
||||
|
{PB_9, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 4, 0)}, // TIM4_CH4
|
||||
|
{PB_9_ALT1, TIM11, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM11, 1, 0)}, // TIM11_CH1
|
||||
|
{PB_10, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 3, 0)}, // TIM2_CH3
|
||||
|
{PB_13, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 1)}, // TIM1_CH1N
|
||||
|
{PB_14, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 1)}, // TIM1_CH2N
|
||||
|
{PB_15, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||
|
{PC_6, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||
|
{PC_7, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||
|
{PC_8, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 3, 0)}, // TIM3_CH3
|
||||
|
{PC_9, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** UART ***
|
||||
|
|
||||
|
#ifdef HAL_UART_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_UART_TX[] = { |
||||
|
{PA_2, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)}, |
||||
|
{PA_9, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
{PA_11, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)}, |
||||
|
{PB_6, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
{PC_6, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_UART_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_UART_RX[] = { |
||||
|
{PA_3, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)}, |
||||
|
{PA_10, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
{PA_12, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)}, |
||||
|
{PB_7, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
{PC_7, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_UART_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_UART_RTS[] = { |
||||
|
{PA_1, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)}, |
||||
|
{PA_12, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_UART_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_UART_CTS[] = { |
||||
|
{PA_0, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)}, |
||||
|
{PA_11, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** SPI ***
|
||||
|
|
||||
|
#ifdef HAL_SPI_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_SPI_MOSI[] = { |
||||
|
{PA_7, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PB_5, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PB_5_ALT1, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{PB_15, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PC_3, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PC_12, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_SPI_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_SPI_MISO[] = { |
||||
|
{PA_6, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PB_4, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PB_4_ALT1, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{PB_14, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PC_2, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PC_11, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_SPI_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_SPI_SCLK[] = { |
||||
|
{PA_5, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PB_3, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PB_3_ALT1, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{PB_10, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PB_13, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PC_10, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#ifdef HAL_SPI_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_SPI_SSEL[] = { |
||||
|
{PA_4, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PA_4_ALT1, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{PA_15, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
{PA_15_ALT1, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)}, |
||||
|
{PB_9, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{PB_12, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** No CAN ***
|
||||
|
|
||||
|
//*** No ETHERNET ***
|
||||
|
|
||||
|
//*** No QUADSPI ***
|
||||
|
|
||||
|
//*** USB ***
|
||||
|
|
||||
|
#if defined(HAL_PCD_MODULE_ENABLED) || defined(HAL_HCD_MODULE_ENABLED) |
||||
|
WEAK const PinMap PinMap_USB_OTG_FS[] = { |
||||
|
{PA_8, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_SOF
|
||||
|
{PA_9, USB_OTG_FS, STM_PIN_DATA(STM_MODE_INPUT, GPIO_NOPULL, GPIO_AF_NONE)}, // USB_OTG_FS_VBUS
|
||||
|
{PA_10, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_ID
|
||||
|
{PA_11, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_DM
|
||||
|
{PA_12, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_DP
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** SD ***
|
||||
|
|
||||
|
#ifdef HAL_SD_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_SD[] = { |
||||
|
{PB_8, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D4
|
||||
|
{PB_9, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D5
|
||||
|
{PC_6, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D6
|
||||
|
{PC_7, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D7
|
||||
|
{PC_8, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D0
|
||||
|
{PC_9, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D1
|
||||
|
{PC_10, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D2
|
||||
|
{PC_11, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_SDIO)}, // SDIO_D3
|
||||
|
{PC_12, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF12_SDIO)}, // SDIO_CK
|
||||
|
{PD_2, SDIO, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF12_SDIO)}, // SDIO_CMD
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
#endif /* !CUSTOM_PERIPHERAL_PINS */ |
@ -0,0 +1,52 @@ |
|||||
|
/* Alternate pin name */ |
||||
|
PA_0_ALT1 = PA_0 | ALT1, |
||||
|
PA_1_ALT1 = PA_1 | ALT1, |
||||
|
PA_2_ALT1 = PA_2 | ALT1, |
||||
|
PA_2_ALT2 = PA_2 | ALT2, |
||||
|
PA_3_ALT1 = PA_3 | ALT1, |
||||
|
PA_3_ALT2 = PA_3 | ALT2, |
||||
|
PA_4_ALT1 = PA_4 | ALT1, |
||||
|
PA_7_ALT1 = PA_7 | ALT1, |
||||
|
PA_15_ALT1 = PA_15 | ALT1, |
||||
|
PB_0_ALT1 = PB_0 | ALT1, |
||||
|
PB_1_ALT1 = PB_1 | ALT1, |
||||
|
PB_3_ALT1 = PB_3 | ALT1, |
||||
|
PB_4_ALT1 = PB_4 | ALT1, |
||||
|
PB_5_ALT1 = PB_5 | ALT1, |
||||
|
PB_8_ALT1 = PB_8 | ALT1, |
||||
|
PB_9_ALT1 = PB_9 | ALT1, |
||||
|
|
||||
|
/* SYS_WKUP */ |
||||
|
#ifdef PWR_WAKEUP_PIN1 |
||||
|
SYS_WKUP1 = PA_0, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN2 |
||||
|
SYS_WKUP2 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN3 |
||||
|
SYS_WKUP3 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN4 |
||||
|
SYS_WKUP4 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN5 |
||||
|
SYS_WKUP5 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN6 |
||||
|
SYS_WKUP6 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN7 |
||||
|
SYS_WKUP7 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN8 |
||||
|
SYS_WKUP8 = NC, |
||||
|
#endif |
||||
|
|
||||
|
/* USB */ |
||||
|
#ifdef USBCON |
||||
|
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, |
||||
|
#endif |
@ -0,0 +1,177 @@ |
|||||
|
/** |
||||
|
****************************************************************************** |
||||
|
* @file LinkerScript.ld |
||||
|
* @author Auto-generated by STM32CubeIDE |
||||
|
* @brief Linker script for STM32F401RBTx Device from STM32F4 series |
||||
|
* 128Kbytes FLASH |
||||
|
* 64Kbytes RAM |
||||
|
* |
||||
|
* Set heap size, stack size and stack location according |
||||
|
* to application requirements. |
||||
|
* |
||||
|
* Set memory bank area and size if external memory is used |
||||
|
****************************************************************************** |
||||
|
* @attention |
||||
|
* |
||||
|
* <h2><center>© Copyright (c) 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 |
||||
|
* |
||||
|
****************************************************************************** |
||||
|
*/ |
||||
|
|
||||
|
/* Entry Point */ |
||||
|
ENTRY(Reset_Handler) |
||||
|
|
||||
|
/* Highest address of the user mode stack */ |
||||
|
_estack = ORIGIN(RAM) + LENGTH(RAM); /* end of "RAM" Ram type memory */ |
||||
|
|
||||
|
_Min_Heap_Size = 0x200; /* required amount of heap */ |
||||
|
_Min_Stack_Size = 0x400; /* required amount of stack */ |
||||
|
|
||||
|
/* Memories definition */ |
||||
|
MEMORY |
||||
|
{ |
||||
|
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = LD_MAX_DATA_SIZE |
||||
|
FLASH (rx) : ORIGIN = 0x8000000 + LD_FLASH_OFFSET, LENGTH = LD_MAX_SIZE - LD_FLASH_OFFSET |
||||
|
} |
||||
|
|
||||
|
/* Sections */ |
||||
|
SECTIONS |
||||
|
{ |
||||
|
/* The startup code into "FLASH" Rom type memory */ |
||||
|
.isr_vector : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
KEEP(*(.isr_vector)) /* Startup code */ |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
/* The program code and other data into "FLASH" Rom type memory */ |
||||
|
.text : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
*(.text) /* .text sections (code) */ |
||||
|
*(.text*) /* .text* sections (code) */ |
||||
|
*(.glue_7) /* glue arm to thumb code */ |
||||
|
*(.glue_7t) /* glue thumb to arm code */ |
||||
|
*(.eh_frame) |
||||
|
|
||||
|
KEEP (*(.init)) |
||||
|
KEEP (*(.fini)) |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_etext = .; /* define a global symbols at end of code */ |
||||
|
} >FLASH |
||||
|
|
||||
|
/* Constant data into "FLASH" Rom type memory */ |
||||
|
.rodata : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
*(.rodata) /* .rodata sections (constants, strings, etc.) */ |
||||
|
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */ |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
.ARM.extab : { |
||||
|
. = ALIGN(4); |
||||
|
*(.ARM.extab* .gnu.linkonce.armextab.*) |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
.ARM : { |
||||
|
. = ALIGN(4); |
||||
|
__exidx_start = .; |
||||
|
*(.ARM.exidx*) |
||||
|
__exidx_end = .; |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
.preinit_array : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
PROVIDE_HIDDEN (__preinit_array_start = .); |
||||
|
KEEP (*(.preinit_array*)) |
||||
|
PROVIDE_HIDDEN (__preinit_array_end = .); |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
.init_array : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
PROVIDE_HIDDEN (__init_array_start = .); |
||||
|
KEEP (*(SORT(.init_array.*))) |
||||
|
KEEP (*(.init_array*)) |
||||
|
PROVIDE_HIDDEN (__init_array_end = .); |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
.fini_array : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
PROVIDE_HIDDEN (__fini_array_start = .); |
||||
|
KEEP (*(SORT(.fini_array.*))) |
||||
|
KEEP (*(.fini_array*)) |
||||
|
PROVIDE_HIDDEN (__fini_array_end = .); |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
/* Used by the startup to initialize data */ |
||||
|
_sidata = LOADADDR(.data); |
||||
|
|
||||
|
/* Initialized data sections into "RAM" Ram type memory */ |
||||
|
.data : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
_sdata = .; /* create a global symbol at data start */ |
||||
|
*(.data) /* .data sections */ |
||||
|
*(.data*) /* .data* sections */ |
||||
|
*(.RamFunc) /* .RamFunc sections */ |
||||
|
*(.RamFunc*) /* .RamFunc* sections */ |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_edata = .; /* define a global symbol at data end */ |
||||
|
|
||||
|
} >RAM AT> FLASH |
||||
|
|
||||
|
/* Uninitialized data section into "RAM" Ram type memory */ |
||||
|
. = ALIGN(4); |
||||
|
.bss : |
||||
|
{ |
||||
|
/* This is used by the startup in order to initialize the .bss section */ |
||||
|
_sbss = .; /* define a global symbol at bss start */ |
||||
|
__bss_start__ = _sbss; |
||||
|
*(.bss) |
||||
|
*(.bss*) |
||||
|
*(COMMON) |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_ebss = .; /* define a global symbol at bss end */ |
||||
|
__bss_end__ = _ebss; |
||||
|
} >RAM |
||||
|
|
||||
|
/* User_heap_stack section, used to check that there is enough "RAM" Ram type memory left */ |
||||
|
._user_heap_stack : |
||||
|
{ |
||||
|
. = ALIGN(8); |
||||
|
PROVIDE ( end = . ); |
||||
|
PROVIDE ( _end = . ); |
||||
|
. = . + _Min_Heap_Size; |
||||
|
. = . + _Min_Stack_Size; |
||||
|
. = ALIGN(8); |
||||
|
} >RAM |
||||
|
|
||||
|
/* Remove information from the compiler libraries */ |
||||
|
/DISCARD/ : |
||||
|
{ |
||||
|
libc.a ( * ) |
||||
|
libm.a ( * ) |
||||
|
libgcc.a ( * ) |
||||
|
} |
||||
|
|
||||
|
.ARM.attributes 0 : { *(.ARM.attributes) } |
||||
|
} |
@ -0,0 +1,223 @@ |
|||||
|
/*
|
||||
|
******************************************************************************* |
||||
|
* Copyright (c) 2020-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 |
||||
|
* |
||||
|
******************************************************************************* |
||||
|
*/ |
||||
|
|
||||
|
#if defined(STM32F401xC) |
||||
|
#include "pins_arduino.h" |
||||
|
|
||||
|
// Digital PinName array
|
||||
|
const PinName digitalPin[] = { |
||||
|
PA_0, // D0/A0
|
||||
|
PA_1, // D1/A1
|
||||
|
PA_2, // D2/A2
|
||||
|
PA_3, // D3/A3
|
||||
|
PA_4, // D4/A4
|
||||
|
PA_5, // D5/A5
|
||||
|
PA_6, // D6/A6
|
||||
|
PA_7, // D7/A7
|
||||
|
PA_8, // D8
|
||||
|
PA_9, // D9
|
||||
|
PA_10, // D10
|
||||
|
PA_11, // D11
|
||||
|
PA_12, // D12
|
||||
|
PA_13, // D13
|
||||
|
PA_14, // D14
|
||||
|
PA_15, // D15
|
||||
|
PB_0, // D16/A8
|
||||
|
PB_1, // D17/A9
|
||||
|
PB_2, // D18
|
||||
|
PB_3, // D19
|
||||
|
PB_4, // D20
|
||||
|
PB_5, // D21
|
||||
|
PB_6, // D22
|
||||
|
PB_7, // D23
|
||||
|
PB_8, // D24
|
||||
|
PB_9, // D25
|
||||
|
PB_10, // D26
|
||||
|
PB_12, // D27
|
||||
|
PB_13, // D28
|
||||
|
PB_14, // D29
|
||||
|
PB_15, // D30
|
||||
|
PC_0, // D31/A10
|
||||
|
PC_1, // D32/A11
|
||||
|
PC_2, // D33/A12
|
||||
|
PC_3, // D34/A13
|
||||
|
PC_4, // D35/A14
|
||||
|
PC_5, // D36/A15
|
||||
|
PC_6, // D37
|
||||
|
PC_7, // D38
|
||||
|
PC_8, // D39
|
||||
|
PC_9, // D40
|
||||
|
PC_10, // D41
|
||||
|
PC_11, // D42
|
||||
|
PC_12, // D43
|
||||
|
PC_13, // D44
|
||||
|
PC_14, // D45
|
||||
|
PC_15, // D46
|
||||
|
PD_2, // D47
|
||||
|
PH_0, // D48
|
||||
|
PH_1 // D49
|
||||
|
}; |
||||
|
|
||||
|
// Analog (Ax) pin number array
|
||||
|
const uint32_t analogInputPin[] = { |
||||
|
0, // A0, PA0
|
||||
|
1, // A1, PA1
|
||||
|
2, // A2, PA2
|
||||
|
3, // A3, PA3
|
||||
|
4, // A4, PA4
|
||||
|
5, // A5, PA5
|
||||
|
6, // A6, PA6
|
||||
|
7, // A7, PA7
|
||||
|
16, // A8, PB0
|
||||
|
17, // A9, PB1
|
||||
|
31, // A10, PC0
|
||||
|
32, // A11, PC1
|
||||
|
33, // A12, PC2
|
||||
|
34, // A13, PC3
|
||||
|
35, // A14, PC4
|
||||
|
36 // A15, PC5
|
||||
|
}; |
||||
|
|
||||
|
// ----------------------------------------------------------------------------
|
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
extern "C" { |
||||
|
#endif |
||||
|
|
||||
|
/*
|
||||
|
* @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 |
||||
|
*/ |
||||
|
|
||||
|
/******************************************************************************/ |
||||
|
/* PLL (clocked by HSE) used as System clock source */ |
||||
|
/******************************************************************************/ |
||||
|
static uint8_t SetSysClock_PLL_HSE(uint8_t bypass) |
||||
|
{ |
||||
|
RCC_OscInitTypeDef RCC_OscInitStruct; |
||||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct; |
||||
|
|
||||
|
/* The voltage scaling allows optimizing the power consumption when the device is
|
||||
|
clocked below the maximum system frequency, to update the voltage scaling value |
||||
|
regarding system frequency refer to product datasheet. */ |
||||
|
__HAL_RCC_PWR_CLK_ENABLE(); |
||||
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE2); |
||||
|
|
||||
|
// 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 8 MHz xtal on OSC_IN/OSC_OUT
|
||||
|
} else { |
||||
|
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS; // External 8 MHz clock on OSC_IN
|
||||
|
} |
||||
|
|
||||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; |
||||
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; |
||||
|
RCC_OscInitStruct.PLL.PLLM = HSE_VALUE / 1000000L; // Expects an 8 MHz external clock by default. Redefine HSE_VALUE if not
|
||||
|
RCC_OscInitStruct.PLL.PLLN = 336; // VCO output clock = 336 MHz (1 MHz * 336)
|
||||
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; // PLLCLK = 84 MHz (336 MHz / 4)
|
||||
|
RCC_OscInitStruct.PLL.PLLQ = 7; // USB clock = 48 MHz (336 MHz / 7) --> OK for USB
|
||||
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != 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; // 84 MHz
|
||||
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; // 84 MHz
|
||||
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; // 42 MHz
|
||||
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; // 84 MHz
|
||||
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) { |
||||
|
return 0; // FAIL
|
||||
|
} |
||||
|
|
||||
|
/* Output clock on MCO1 pin(PA8) for debugging purpose */ |
||||
|
/*
|
||||
|
if (bypass == 0) |
||||
|
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_2); // 4 MHz
|
||||
|
else |
||||
|
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_1); // 8 MHz
|
||||
|
*/ |
||||
|
|
||||
|
return 1; // OK
|
||||
|
} |
||||
|
|
||||
|
/******************************************************************************/ |
||||
|
/* PLL (clocked by HSI) used as System clock source */ |
||||
|
/******************************************************************************/ |
||||
|
uint8_t SetSysClock_PLL_HSI(void) |
||||
|
{ |
||||
|
RCC_OscInitTypeDef RCC_OscInitStruct; |
||||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct; |
||||
|
|
||||
|
/* The voltage scaling allows optimizing the power consumption when the device is
|
||||
|
clocked below the maximum system frequency, to update the voltage scaling value |
||||
|
regarding system frequency refer to product datasheet. */ |
||||
|
__HAL_RCC_PWR_CLK_ENABLE(); |
||||
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE2); |
||||
|
|
||||
|
// Enable HSI oscillator and activate PLL with HSI as source
|
||||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_HSE; |
||||
|
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 = 16; // VCO input clock = 1 MHz (16 MHz / 16)
|
||||
|
RCC_OscInitStruct.PLL.PLLN = 336; // VCO output clock = 336 MHz (1 MHz * 336)
|
||||
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; // PLLCLK = 84 MHz (336 MHz / 4)
|
||||
|
RCC_OscInitStruct.PLL.PLLQ = 7; // USB clock = 48 MHz (336 MHz / 7) --> freq is ok but not precise enough
|
||||
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != 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; // 84 MHz
|
||||
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; // 84 MHz
|
||||
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; // 42 MHz
|
||||
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; // 84 MHz
|
||||
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) { |
||||
|
return 0; // FAIL
|
||||
|
} |
||||
|
|
||||
|
/* Output clock on MCO1 pin(PA8) for debugging purpose */ |
||||
|
//HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSI, RCC_MCODIV_1); // 16 MHz
|
||||
|
|
||||
|
return 1; // OK
|
||||
|
} |
||||
|
|
||||
|
WEAK void SystemClock_Config(void) |
||||
|
{ |
||||
|
/* 1- If fail try to start with HSE and external xtal */ |
||||
|
if (SetSysClock_PLL_HSE(0) == 0) { |
||||
|
/* 2- Try to start with HSE and external clock */ |
||||
|
if (SetSysClock_PLL_HSE(1) == 0) { |
||||
|
/* 3- If fail start with HSI clock */ |
||||
|
if (SetSysClock_PLL_HSI() == 0) { |
||||
|
Error_Handler(); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
/* Output clock on MCO2 pin(PC9) for debugging purpose */ |
||||
|
//HAL_RCC_MCOConfig(RCC_MCO2, RCC_MCO2SOURCE_SYSCLK, RCC_MCODIV_4);
|
||||
|
} |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
} |
||||
|
#endif |
||||
|
#endif /* STM32F401xC */ |
@ -0,0 +1,186 @@ |
|||||
|
/*
|
||||
|
******************************************************************************* |
||||
|
* Copyright (c) 2020-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 |
||||
|
* |
||||
|
******************************************************************************* |
||||
|
*/ |
||||
|
#pragma once |
||||
|
|
||||
|
/*----------------------------------------------------------------------------
|
||||
|
* STM32 pins number |
||||
|
*----------------------------------------------------------------------------*/ |
||||
|
#define PA0 PIN_A0 |
||||
|
#define PA1 PIN_A1 |
||||
|
#define PA2 PIN_A2 |
||||
|
#define PA3 PIN_A3 |
||||
|
#define PA4 PIN_A4 |
||||
|
#define PA5 PIN_A5 |
||||
|
#define PA6 PIN_A6 |
||||
|
#define PA7 PIN_A7 |
||||
|
#define PA8 8 |
||||
|
#define PA9 9 |
||||
|
#define PA10 10 |
||||
|
#define PA11 11 |
||||
|
#define PA12 12 |
||||
|
#define PA13 13 |
||||
|
#define PA14 14 |
||||
|
#define PA15 15 |
||||
|
#define PB0 PIN_A8 |
||||
|
#define PB1 PIN_A9 |
||||
|
#define PB2 18 |
||||
|
#define PB3 19 |
||||
|
#define PB4 20 |
||||
|
#define PB5 21 |
||||
|
#define PB6 22 |
||||
|
#define PB7 23 |
||||
|
#define PB8 24 |
||||
|
#define PB9 25 |
||||
|
#define PB10 26 |
||||
|
#define PB12 27 |
||||
|
#define PB13 28 |
||||
|
#define PB14 29 |
||||
|
#define PB15 30 |
||||
|
#define PC0 PIN_A10 |
||||
|
#define PC1 PIN_A11 |
||||
|
#define PC2 PIN_A12 |
||||
|
#define PC3 PIN_A13 |
||||
|
#define PC4 PIN_A14 |
||||
|
#define PC5 PIN_A15 |
||||
|
#define PC6 37 |
||||
|
#define PC7 38 |
||||
|
#define PC8 39 |
||||
|
#define PC9 40 |
||||
|
#define PC10 41 |
||||
|
#define PC11 42 |
||||
|
#define PC12 43 |
||||
|
#define PC13 44 |
||||
|
#define PC14 45 |
||||
|
#define PC15 46 |
||||
|
#define PD2 47 |
||||
|
#define PH0 48 |
||||
|
#define PH1 49 |
||||
|
|
||||
|
// Alternate pins number
|
||||
|
#define PA0_ALT1 (PA0 | ALT1) |
||||
|
#define PA1_ALT1 (PA1 | ALT1) |
||||
|
#define PA2_ALT1 (PA2 | ALT1) |
||||
|
#define PA2_ALT2 (PA2 | ALT2) |
||||
|
#define PA3_ALT1 (PA3 | ALT1) |
||||
|
#define PA3_ALT2 (PA3 | ALT2) |
||||
|
#define PA4_ALT1 (PA4 | ALT1) |
||||
|
#define PA7_ALT1 (PA7 | ALT1) |
||||
|
#define PA15_ALT1 (PA15 | ALT1) |
||||
|
#define PB0_ALT1 (PB0 | ALT1) |
||||
|
#define PB1_ALT1 (PB1 | ALT1) |
||||
|
#define PB3_ALT1 (PB3 | ALT1) |
||||
|
#define PB4_ALT1 (PB4 | ALT1) |
||||
|
#define PB5_ALT1 (PB5 | ALT1) |
||||
|
#define PB8_ALT1 (PB8 | ALT1) |
||||
|
#define PB9_ALT1 (PB9 | ALT1) |
||||
|
|
||||
|
#define NUM_DIGITAL_PINS 50 |
||||
|
#define NUM_ANALOG_INPUTS 16 |
||||
|
#define NUM_ANALOG_FIRST 192 |
||||
|
|
||||
|
// On-board LED pin number
|
||||
|
#ifndef LED_BUILTIN |
||||
|
#define LED_BUILTIN PNUM_NOT_DEFINED |
||||
|
#endif |
||||
|
|
||||
|
// On-board user button
|
||||
|
#ifndef USER_BTN |
||||
|
#define USER_BTN PNUM_NOT_DEFINED |
||||
|
#endif |
||||
|
|
||||
|
// SPI definitions
|
||||
|
#ifndef PIN_SPI_SS |
||||
|
#define PIN_SPI_SS PA4 |
||||
|
#endif |
||||
|
#ifndef PIN_SPI_SS1 |
||||
|
#define PIN_SPI_SS1 PA15 |
||||
|
#endif |
||||
|
#ifndef PIN_SPI_SS2 |
||||
|
#define PIN_SPI_SS2 PNUM_NOT_DEFINED |
||||
|
#endif |
||||
|
#ifndef PIN_SPI_SS3 |
||||
|
#define PIN_SPI_SS3 PNUM_NOT_DEFINED |
||||
|
#endif |
||||
|
#ifndef PIN_SPI_MOSI |
||||
|
#define PIN_SPI_MOSI PA7 |
||||
|
#endif |
||||
|
#ifndef PIN_SPI_MISO |
||||
|
#define PIN_SPI_MISO PA6 |
||||
|
#endif |
||||
|
#ifndef PIN_SPI_SCK |
||||
|
#define PIN_SPI_SCK PA5 |
||||
|
#endif |
||||
|
|
||||
|
// I2C definitions
|
||||
|
#ifndef PIN_WIRE_SDA |
||||
|
#define PIN_WIRE_SDA PB3 |
||||
|
#endif |
||||
|
#ifndef PIN_WIRE_SCL |
||||
|
#define PIN_WIRE_SCL PB10 |
||||
|
#endif |
||||
|
|
||||
|
// Timer Definitions
|
||||
|
// Use TIM6/TIM7 when possible as servo and tone don't need GPIO output pin
|
||||
|
#ifndef TIMER_TONE |
||||
|
#define TIMER_TONE TIM10 |
||||
|
#endif |
||||
|
#ifndef TIMER_SERVO |
||||
|
#define TIMER_SERVO TIM11 |
||||
|
#endif |
||||
|
|
||||
|
// UART Definitions
|
||||
|
#ifndef SERIAL_UART_INSTANCE |
||||
|
#define SERIAL_UART_INSTANCE 2 |
||||
|
#endif |
||||
|
|
||||
|
// Default pin used for generic 'Serial' instance
|
||||
|
// Mandatory for Firmata
|
||||
|
#ifndef PIN_SERIAL_RX |
||||
|
#define PIN_SERIAL_RX PA3 |
||||
|
#endif |
||||
|
#ifndef PIN_SERIAL_TX |
||||
|
#define PIN_SERIAL_TX PA2 |
||||
|
#endif |
||||
|
|
||||
|
// Extra HAL modules
|
||||
|
#if !defined(HAL_SD_MODULE_DISABLED) |
||||
|
#define HAL_SD_MODULE_ENABLED |
||||
|
#endif |
||||
|
|
||||
|
/*----------------------------------------------------------------------------
|
||||
|
* Arduino objects - C++ only |
||||
|
*----------------------------------------------------------------------------*/ |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
// These serial port names are intended to allow libraries and architecture-neutral
|
||||
|
// sketches to automatically default to the correct port name for a particular type
|
||||
|
// of use. For example, a GPS module would normally connect to SERIAL_PORT_HARDWARE_OPEN,
|
||||
|
// the first hardware serial port whose RX/TX pins are not dedicated to another use.
|
||||
|
//
|
||||
|
// SERIAL_PORT_MONITOR Port which normally prints to the Arduino Serial Monitor
|
||||
|
//
|
||||
|
// SERIAL_PORT_USBVIRTUAL Port which is USB virtual serial
|
||||
|
//
|
||||
|
// SERIAL_PORT_LINUXBRIDGE Port which connects to a Linux system via Bridge library
|
||||
|
//
|
||||
|
// SERIAL_PORT_HARDWARE Hardware serial port, physical RX & TX pins.
|
||||
|
//
|
||||
|
// SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX
|
||||
|
// pins are NOT connected to anything by default.
|
||||
|
#ifndef SERIAL_PORT_MONITOR |
||||
|
#define SERIAL_PORT_MONITOR Serial |
||||
|
#endif |
||||
|
#ifndef SERIAL_PORT_HARDWARE |
||||
|
#define SERIAL_PORT_HARDWARE Serial |
||||
|
#endif |
||||
|
#endif |
@ -0,0 +1,399 @@ |
|||||
|
/*
|
||||
|
******************************************************************************* |
||||
|
* Copyright (c) 2019, 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. |
||||
|
******************************************************************************* |
||||
|
* Automatically generated from STM32F407Z(E-G)Tx.xml |
||||
|
*/ |
||||
|
#include <Arduino.h> |
||||
|
#include <PeripheralPins.h> |
||||
|
|
||||
|
/* =====
|
||||
|
* Note: Commented lines are alternative possibilities which are not used per default. |
||||
|
* If you change them, you will have to know what you do |
||||
|
* ===== |
||||
|
*/ |
||||
|
|
||||
|
//*** ADC ***
|
||||
|
|
||||
|
#ifdef HAL_ADC_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_ADC[] = { |
||||
|
//{PA_0, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC1_IN0
|
||||
|
//{PA_0, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC2_IN0
|
||||
|
//{PA_0, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 0, 0)}, // ADC3_IN0
|
||||
|
//{PA_1, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 1, 0)}, // ADC1_IN1
|
||||
|
//{PA_1, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 1, 0)}, // ADC2_IN1
|
||||
|
//{PA_1, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 1, 0)}, // ADC3_IN1
|
||||
|
{PA_2, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // ADC1_IN2 LCD RX
|
||||
|
//{PA_2, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // ADC2_IN2
|
||||
|
//{PA_2, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // ADC3_IN2
|
||||
|
{PA_3, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC1_IN3 LCD TX
|
||||
|
//{PA_3, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC2_IN3
|
||||
|
//{PA_3, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 3, 0)}, // ADC3_IN3
|
||||
|
//{PA_4, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC1_IN4
|
||||
|
//{PA_4, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC2_IN4
|
||||
|
//{PA_5, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC1_IN5
|
||||
|
//{PA_5, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC2_IN5
|
||||
|
//{PA_6, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC1_IN6
|
||||
|
//{PA_6, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC2_IN6
|
||||
|
//{PA_7, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 7, 0)}, // ADC1_IN7
|
||||
|
//{PA_7, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 7, 0)}, // ADC2_IN7
|
||||
|
//{PB_0, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC1_IN8
|
||||
|
//{PB_0, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC2_IN8
|
||||
|
//{PB_1, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC1_IN9
|
||||
|
//{PB_1, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC2_IN9
|
||||
|
{PC_0, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC1_IN10
|
||||
|
//{PC_0, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC2_IN10
|
||||
|
//{PC_0, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 10, 0)}, // ADC3_IN10
|
||||
|
{PC_1, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 11, 0)}, // ADC1_IN11
|
||||
|
//{PC_1, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 11, 0)}, // ADC2_IN11
|
||||
|
//{PC_1, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 11, 0)}, // ADC3_IN11
|
||||
|
{PC_2, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC1_IN12
|
||||
|
//{PC_2, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC2_IN12
|
||||
|
//{PC_2, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 12, 0)}, // ADC3_IN12
|
||||
|
{PC_3, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC1_IN13
|
||||
|
//{PC_3, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC2_IN13
|
||||
|
//{PC_3, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 13, 0)}, // ADC3_IN13
|
||||
|
//{PC_4, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 14, 0)}, // ADC1_IN14
|
||||
|
//{PC_4, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 14, 0)}, // ADC2_IN14
|
||||
|
//{PC_5, ADC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 15, 0)}, // ADC1_IN15
|
||||
|
//{PC_5, ADC2, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 15, 0)}, // ADC2_IN15
|
||||
|
//{PF_3, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 9, 0)}, // ADC3_IN9
|
||||
|
//{PF_4, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 14, 0)}, // ADC3_IN14
|
||||
|
//{PF_5, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 15, 0)}, // ADC3_IN15
|
||||
|
//{PF_6, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 4, 0)}, // ADC3_IN4
|
||||
|
//{PF_7, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 5, 0)}, // ADC3_IN5
|
||||
|
//{PF_8, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 6, 0)}, // ADC3_IN6
|
||||
|
{PF_9, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 7, 0)}, // ADC3_IN7
|
||||
|
{PF_10, ADC3, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 8, 0)}, // ADC3_IN8
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** DAC ***
|
||||
|
|
||||
|
#ifdef HAL_DAC_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_DAC[] = { |
||||
|
//{PA_4, DAC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 1, 0)}, // DAC_OUT1
|
||||
|
//{PA_5, DAC1, STM_PIN_DATA_EXT(STM_MODE_ANALOG, GPIO_NOPULL, 0, 2, 0)}, // DAC_OUT2
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** I2C ***
|
||||
|
|
||||
|
#ifdef HAL_I2C_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_I2C_SDA[] = { |
||||
|
{PB_7, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_9, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_11, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)}, |
||||
|
{PC_9, I2C3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)}, |
||||
|
{PF_0, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_I2C_SCL[] = { |
||||
|
{PA_8, I2C3, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C3)}, |
||||
|
{PB_6, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_8, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C1)}, |
||||
|
{PB_10, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)}, |
||||
|
{PF_1, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, GPIO_AF4_I2C2)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** PWM ***
|
||||
|
|
||||
|
#ifdef HAL_TIM_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_PWM[] = { |
||||
|
//{PA_0, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||
|
// {PA_0, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 1, 0)}, // TIM5_CH1
|
||||
|
// {PA_1, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 2, 0)}, // TIM2_CH2
|
||||
|
//{PA_1, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 2, 0)}, // TIM5_CH2
|
||||
|
// {PA_2, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 3, 0)}, // TIM2_CH3
|
||||
|
//{PA_2, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 3, 0)}, // TIM5_CH3
|
||||
|
// {PA_2, TIM9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM9, 1, 0)}, // TIM9_CH1
|
||||
|
// {PA_3, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 4, 0)}, // TIM2_CH4
|
||||
|
//{PA_3, TIM5, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM5, 4, 0)}, // TIM5_CH4
|
||||
|
// {PA_3, TIM9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM9, 2, 0)}, // TIM9_CH2
|
||||
|
//{PA_5, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1
|
||||
|
// {PA_5, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 1, 1)}, // TIM8_CH1N
|
||||
|
// {PA_6, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||
|
//{PA_6, TIM13, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_TIM13, 1, 0)}, // TIM13_CH1
|
||||
|
// {PA_7, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 1)}, // TIM1_CH1N
|
||||
|
// {PA_7, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||
|
// {PA_7, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 1, 1)}, // TIM8_CH1N
|
||||
|
//{PA_7, TIM14, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_TIM14, 1, 0)}, // TIM14_CH1
|
||||
|
//{PA_8, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 0)}, // TIM1_CH1
|
||||
|
//{PA_9, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 0)}, // TIM1_CH2
|
||||
|
//{PA_10, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 0)}, // TIM1_CH3
|
||||
|
//{PA_11, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 4, 0)}, // TIM1_CH4
|
||||
|
{PA_15, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 1, 0)}, // TIM2_CH1 HEATER_4_PIN
|
||||
|
// {PB_0, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 1)}, // TIM1_CH2N
|
||||
|
// {PB_0, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 3, 0)}, // TIM3_CH3
|
||||
|
{PB_0, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 2, 1)}, // TIM8_CH2N HEATER_1_PIN
|
||||
|
// {PB_1, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||
|
// {PB_1, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
|
||||
|
//{PB_1, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 3, 1)}, // TIM8_CH3N
|
||||
|
//{PB_2, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 4, 0)}, // TIM2_CH4
|
||||
|
//{PB_3, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 2, 0)}, // TIM2_CH2
|
||||
|
{PB_4, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1 HEATER_0_PIN
|
||||
|
//{PB_5, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||
|
//{PB_6, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 1, 0)}, // TIM4_CH1
|
||||
|
//{PB_7, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 2, 0)}, // TIM4_CH2
|
||||
|
//{PB_8, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 3, 0)}, // TIM4_CH3
|
||||
|
// {PB_8, TIM10, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM10, 1, 0)}, // TIM10_CH1
|
||||
|
// {PB_9, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 4, 0)}, // TIM4_CH4
|
||||
|
//{PB_9, TIM11, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM11, 1, 0)}, // TIM11_CH1
|
||||
|
//{PB_10, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 3, 0)}, // TIM2_CH3
|
||||
|
//{PB_11, TIM2, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM2, 4, 0)}, // TIM2_CH4
|
||||
|
//{PB_13, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 1)}, // TIM1_CH1N
|
||||
|
// {PB_14, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 1)}, // TIM1_CH2N
|
||||
|
// {PB_14, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 2, 1)}, // TIM8_CH2N
|
||||
|
//{PB_14, TIM12, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_TIM12, 1, 0)}, // TIM12_CH1
|
||||
|
// {PB_15, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||
|
// {PB_15, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 3, 1)}, // TIM8_CH3N
|
||||
|
//{PB_15, TIM12, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF9_TIM12, 2, 0)}, // TIM12_CH2
|
||||
|
//{PC_6, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 1, 0)}, // TIM3_CH1
|
||||
|
// {PC_6, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 1, 0)}, // TIM8_CH1
|
||||
|
// {PC_7, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 2, 0)}, // TIM3_CH2
|
||||
|
//{PC_7, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 2, 0)}, // TIM8_CH2
|
||||
|
// {PC_8, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 3, 0)}, // TIM3_CH3
|
||||
|
{PC_8, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 3, 0)}, // TIM8_CH3 HEATER_3_PIN
|
||||
|
// {PC_9, TIM3, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM3, 4, 0)}, // TIM3_CH4
|
||||
|
//{PC_9, TIM8, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM8, 4, 0)}, // TIM8_CH4
|
||||
|
{PD_12, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 1, 0)}, // TIM4_CH1 FAN3
|
||||
|
{PD_13, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 2, 0)}, // TIM4_CH2 HEATER_2_PIN
|
||||
|
{PD_14, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 3, 0)}, // TIM4_CH3 FAN4
|
||||
|
{PD_15, TIM4, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF2_TIM4, 4, 0)}, // TIM4_CH4 FAN2_PIN
|
||||
|
//{PE_5, TIM9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM9, 1, 0)}, // TIM9_CH1
|
||||
|
//{PE_6, TIM9, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF3_TIM9, 2, 0)}, // TIM9_CH2
|
||||
|
{PE_8, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 1)}, // TIM1_CH1N FAN_PIN
|
||||
|
{PE_9, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 1, 0)}, // TIM1_CH1 FAN1_PIN
|
||||
|
{PE_10, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 1)}, // TIM1_CH2N HEATER_BED_PIN
|
||||
|
//{PE_11, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 2, 0)}, // TIM1_CH2
|
||||
|
//{PE_12, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 1)}, // TIM1_CH3N
|
||||
|
//{PE_13, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 3, 0)}, // TIM1_CH3
|
||||
|
//{PE_14, TIM1, STM_PIN_DATA_EXT(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF1_TIM1, 4, 0)}, // TIM1_CH4
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** SERIAL ***
|
||||
|
|
||||
|
#ifdef HAL_UART_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_UART_TX[] = { |
||||
|
//{PA_0, UART4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||
|
{PA_2, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)}, |
||||
|
{PA_9, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
//{PB_6, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
|
||||
|
//{PB_10, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PC_6, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||
|
//{PC_10, UART4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||
|
//{PC_10, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PC_12, UART5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART5)},
|
||||
|
//{PD_5, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||
|
//{PD_8, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_UART_RX[] = { |
||||
|
//{PA_1, UART4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||
|
{PA_3, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)}, |
||||
|
{PA_10, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)}, |
||||
|
//{PB_7, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
|
||||
|
//{PB_11, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PC_7, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||
|
// {PC_11, UART4, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART4)},
|
||||
|
//{PC_11, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PD_2, UART5, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_UART5)},
|
||||
|
//{PD_6, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||
|
//{PD_9, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_UART_RTS[] = { |
||||
|
//{PA_1, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||
|
//{PA_12, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
|
||||
|
//{PB_14, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PD_4, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||
|
//{PD_12, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PG_8, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||
|
//{PG_12, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_UART_CTS[] = { |
||||
|
//{PA_0, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||
|
//{PA_11, USART1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART1)},
|
||||
|
//{PB_13, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PD_3, USART2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART2)},
|
||||
|
//{PD_11, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF7_USART3)},
|
||||
|
//{PG_13, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||
|
//{PG_15, USART6, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF8_USART6)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** SPI ***
|
||||
|
|
||||
|
#ifdef HAL_SPI_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_SPI_MOSI[] = { |
||||
|
{PA_7, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
//{PB_5, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)},
|
||||
|
//{PB_5, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
{PB_15, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
//{PC_3, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)},
|
||||
|
//{PC_12, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_SPI_MISO[] = { |
||||
|
{PA_6, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
//{PB_4, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)},
|
||||
|
//{PB_4, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
{PB_14, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
//{PC_2, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)},
|
||||
|
//{PC_11, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_SPI_SCLK[] = { |
||||
|
{PA_5, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
//{PB_3, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)},
|
||||
|
//{PB_3, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
//{PB_10, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)},
|
||||
|
{PB_13, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
//{PC_10, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_SPI_SSEL[] = { |
||||
|
{PA_4, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)}, |
||||
|
//{PA_4, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
//{PA_15, SPI1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI1)},
|
||||
|
//{PA_15, SPI3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF6_SPI3)},
|
||||
|
//{PB_9, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)},
|
||||
|
{PB_12, SPI2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF5_SPI2)}, |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** CAN ***
|
||||
|
|
||||
|
#ifdef HAL_CAN_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_CAN_RD[] = { |
||||
|
//{PA_11, CAN1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||
|
//{PB_5, CAN2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||
|
{PB_8, CAN1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)}, |
||||
|
//{PB_12, CAN2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||
|
//{PD_0, CAN1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_CAN_TD[] = { |
||||
|
//{PA_12, CAN1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||
|
//{PB_6, CAN2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||
|
{PB_9, CAN1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)}, |
||||
|
//{PB_13, CAN2, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN2)},
|
||||
|
//{PD_1, CAN1, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF9_CAN1)},
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** ETHERNET ***
|
||||
|
|
||||
|
#ifdef HAL_ETH_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_Ethernet[] = { |
||||
|
/*
|
||||
|
{PA_0, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_CRS
|
||||
|
{PA_1, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_REF_CLK|ETH_RX_CLK
|
||||
|
{PA_2, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_MDIO
|
||||
|
{PA_3, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_COL
|
||||
|
{PA_7, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_CRS_DV|ETH_RX_DV
|
||||
|
{PB_0, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_RXD2
|
||||
|
{PB_1, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_RXD3
|
||||
|
{PB_5, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_PPS_OUT
|
||||
|
{PB_8, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD3
|
||||
|
{PB_10, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_RX_ER
|
||||
|
{PB_11, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TX_EN
|
||||
|
{PB_12, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD0
|
||||
|
{PB_13, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD1
|
||||
|
{PC_1, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_MDC
|
||||
|
{PC_2, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD2
|
||||
|
{PC_3, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TX_CLK
|
||||
|
{PC_4, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_RXD0
|
||||
|
{PC_5, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_RXD1
|
||||
|
{PE_2, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD3
|
||||
|
{PG_8, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_PPS_OUT
|
||||
|
{PG_11, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TX_EN
|
||||
|
{PG_13, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD0
|
||||
|
{PG_14, ETH, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF11_ETH)}, // ETH_TXD1
|
||||
|
{NC, NP, 0} |
||||
|
*/ |
||||
|
}; |
||||
|
#endif |
||||
|
|
||||
|
//*** No QUADSPI ***
|
||||
|
|
||||
|
//*** USB ***
|
||||
|
|
||||
|
#ifdef HAL_PCD_MODULE_ENABLED |
||||
|
WEAK const PinMap PinMap_USB_OTG_FS[] = { |
||||
|
//{PA_8, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_SOF
|
||||
|
//{PA_9, USB_OTG_FS, STM_PIN_DATA(STM_MODE_INPUT, GPIO_NOPULL, GPIO_AF_NONE)}, // USB_OTG_FS_VBUS
|
||||
|
//{PA_10, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_ID
|
||||
|
{PA_11, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_DM
|
||||
|
{PA_12, USB_OTG_FS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_FS)}, // USB_OTG_FS_DP
|
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
|
||||
|
WEAK const PinMap PinMap_USB_OTG_HS[] = { |
||||
|
/*
|
||||
|
#ifdef USE_USB_HS_IN_FS |
||||
|
{PA_4, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_SOF
|
||||
|
{PB_12, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_ID
|
||||
|
{PB_13, USB_OTG_HS, STM_PIN_DATA(STM_MODE_INPUT, GPIO_NOPULL, GPIO_AF_NONE)}, // USB_OTG_HS_VBUS
|
||||
|
{PB_14, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_DM
|
||||
|
{PB_15, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF12_OTG_HS_FS)}, // USB_OTG_HS_DP
|
||||
|
#else |
||||
|
{PA_3, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D0
|
||||
|
{PA_5, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_CK
|
||||
|
{PB_0, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D1
|
||||
|
{PB_1, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D2
|
||||
|
{PB_5, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D7
|
||||
|
{PB_10, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D3
|
||||
|
{PB_11, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D4
|
||||
|
{PB_12, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D5
|
||||
|
{PB_13, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_D6
|
||||
|
{PC_0, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_STP
|
||||
|
{PC_2, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_DIR
|
||||
|
{PC_3, USB_OTG_HS, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLUP, GPIO_AF10_OTG_HS)}, // USB_OTG_HS_ULPI_NXT
|
||||
|
#endif // USE_USB_HS_IN_FS
|
||||
|
*/ |
||||
|
{NC, NP, 0} |
||||
|
}; |
||||
|
#endif |
@ -0,0 +1,50 @@ |
|||||
|
/* SYS_WKUP */ |
||||
|
#ifdef PWR_WAKEUP_PIN1 |
||||
|
SYS_WKUP1 = PA_0, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN2 |
||||
|
SYS_WKUP2 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN3 |
||||
|
SYS_WKUP3 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN4 |
||||
|
SYS_WKUP4 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN5 |
||||
|
SYS_WKUP5 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN6 |
||||
|
SYS_WKUP6 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN7 |
||||
|
SYS_WKUP7 = NC, |
||||
|
#endif |
||||
|
#ifdef PWR_WAKEUP_PIN8 |
||||
|
SYS_WKUP8 = NC, |
||||
|
#endif |
||||
|
/* USB */ |
||||
|
#ifdef USBCON |
||||
|
USB_OTG_FS_SOF = PA_8, |
||||
|
USB_OTG_FS_VBUS = PA_9, |
||||
|
USB_OTG_FS_ID = PA_10, |
||||
|
USB_OTG_FS_DM = PA_11, |
||||
|
USB_OTG_FS_DP = PA_12, |
||||
|
USB_OTG_HS_ULPI_D0 = PA_3, |
||||
|
USB_OTG_HS_SOF = PA_4, |
||||
|
USB_OTG_HS_ULPI_CK = PA_5, |
||||
|
USB_OTG_HS_ULPI_D1 = PB_0, |
||||
|
USB_OTG_HS_ULPI_D2 = PB_1, |
||||
|
USB_OTG_HS_ULPI_D7 = PB_5, |
||||
|
USB_OTG_HS_ULPI_D3 = PB_10, |
||||
|
USB_OTG_HS_ULPI_D4 = PB_11, |
||||
|
USB_OTG_HS_ID = PB_12, |
||||
|
USB_OTG_HS_ULPI_D5 = PB_12, |
||||
|
USB_OTG_HS_ULPI_D6 = PB_13, |
||||
|
USB_OTG_HS_VBUS = PB_13, |
||||
|
USB_OTG_HS_DM = PB_14, |
||||
|
USB_OTG_HS_DP = PB_15, |
||||
|
USB_OTG_HS_ULPI_STP = PC_0, |
||||
|
USB_OTG_HS_ULPI_DIR = PC_2, |
||||
|
USB_OTG_HS_ULPI_NXT = PC_3, |
||||
|
#endif |
@ -0,0 +1,204 @@ |
|||||
|
/* |
||||
|
***************************************************************************** |
||||
|
** |
||||
|
|
||||
|
** File : LinkerScript.ld |
||||
|
** |
||||
|
** Abstract : Linker script for STM32F407ZGTx Device with |
||||
|
** 1024KByte FLASH, 128KByte RAM |
||||
|
** |
||||
|
** Set heap size, stack size and stack location according |
||||
|
** to application requirements. |
||||
|
** |
||||
|
** Set memory bank area and size if external memory is used. |
||||
|
** |
||||
|
** Target : STMicroelectronics STM32 |
||||
|
** |
||||
|
** |
||||
|
** Distribution: The file is distributed as is, without any warranty |
||||
|
** of any kind. |
||||
|
** |
||||
|
***************************************************************************** |
||||
|
** @attention |
||||
|
** |
||||
|
** <h2><center>© COPYRIGHT(c) 2014 Ac6</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 Ac6 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. |
||||
|
** |
||||
|
***************************************************************************** |
||||
|
*/ |
||||
|
|
||||
|
/* Entry Point */ |
||||
|
ENTRY(Reset_Handler) |
||||
|
|
||||
|
/* Highest address of the user mode stack */ |
||||
|
_estack = 0x20020000; /* end of RAM */ |
||||
|
/* Generate a link error if heap and stack don't fit into RAM */ |
||||
|
_Min_Heap_Size = 0x200;; /* required amount of heap */ |
||||
|
_Min_Stack_Size = 0x400;; /* required amount of stack */ |
||||
|
|
||||
|
/* Specify the memory areas */ |
||||
|
MEMORY |
||||
|
{ |
||||
|
FLASH (rx) : ORIGIN = 0x8008000, LENGTH = 1024K |
||||
|
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K |
||||
|
CCMRAM (rw) : ORIGIN = 0x10000000, LENGTH = 64K |
||||
|
} |
||||
|
|
||||
|
/* Define output sections */ |
||||
|
SECTIONS |
||||
|
{ |
||||
|
/* The startup code goes first into FLASH */ |
||||
|
.isr_vector : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
KEEP(*(.isr_vector)) /* Startup code */ |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
/* The program code and other data goes into FLASH */ |
||||
|
.text ALIGN(4): |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
*(.text) /* .text sections (code) */ |
||||
|
*(.text*) /* .text* sections (code) */ |
||||
|
*(.glue_7) /* glue arm to thumb code */ |
||||
|
*(.glue_7t) /* glue thumb to arm code */ |
||||
|
*(.eh_frame) |
||||
|
|
||||
|
KEEP (*(.init)) |
||||
|
KEEP (*(.fini)) |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_etext = .; /* define a global symbols at end of code */ |
||||
|
} >FLASH |
||||
|
|
||||
|
/* Constant data goes into FLASH */ |
||||
|
.rodata ALIGN(4): |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
*(.rodata) /* .rodata sections (constants, strings, etc.) */ |
||||
|
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */ |
||||
|
. = ALIGN(4); |
||||
|
} >FLASH |
||||
|
|
||||
|
.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH |
||||
|
.ARM : { |
||||
|
__exidx_start = .; |
||||
|
*(.ARM.exidx*) |
||||
|
__exidx_end = .; |
||||
|
} >FLASH |
||||
|
|
||||
|
.preinit_array : |
||||
|
{ |
||||
|
PROVIDE_HIDDEN (__preinit_array_start = .); |
||||
|
KEEP (*(.preinit_array*)) |
||||
|
PROVIDE_HIDDEN (__preinit_array_end = .); |
||||
|
} >FLASH |
||||
|
.init_array : |
||||
|
{ |
||||
|
PROVIDE_HIDDEN (__init_array_start = .); |
||||
|
KEEP (*(SORT(.init_array.*))) |
||||
|
KEEP (*(.init_array*)) |
||||
|
PROVIDE_HIDDEN (__init_array_end = .); |
||||
|
} >FLASH |
||||
|
.fini_array : |
||||
|
{ |
||||
|
PROVIDE_HIDDEN (__fini_array_start = .); |
||||
|
KEEP (*(SORT(.fini_array.*))) |
||||
|
KEEP (*(.fini_array*)) |
||||
|
PROVIDE_HIDDEN (__fini_array_end = .); |
||||
|
} >FLASH |
||||
|
|
||||
|
/* used by the startup to initialize data */ |
||||
|
_sidata = LOADADDR(.data); |
||||
|
|
||||
|
/* Initialized data sections goes into RAM, load LMA copy after code */ |
||||
|
.data : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
_sdata = .; /* create a global symbol at data start */ |
||||
|
*(.data) /* .data sections */ |
||||
|
*(.data*) /* .data* sections */ |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_edata = .; /* define a global symbol at data end */ |
||||
|
} >RAM AT> FLASH |
||||
|
|
||||
|
_siccmram = LOADADDR(.ccmram); |
||||
|
|
||||
|
/* CCM-RAM section |
||||
|
* |
||||
|
* IMPORTANT NOTE! |
||||
|
* If initialized variables will be placed in this section, |
||||
|
* the startup code needs to be modified to copy the init-values. |
||||
|
*/ |
||||
|
.ccmram : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
_sccmram = .; /* create a global symbol at ccmram start */ |
||||
|
*(.ccmram) |
||||
|
*(.ccmram*) |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_eccmram = .; /* create a global symbol at ccmram end */ |
||||
|
} >CCMRAM AT> FLASH |
||||
|
|
||||
|
|
||||
|
/* Uninitialized data section */ |
||||
|
. = ALIGN(4); |
||||
|
.bss : |
||||
|
{ |
||||
|
/* This is used by the startup in order to initialize the .bss section */ |
||||
|
_sbss = .; /* define a global symbol at bss start */ |
||||
|
__bss_start__ = _sbss; |
||||
|
*(.bss) |
||||
|
*(.bss*) |
||||
|
*(COMMON) |
||||
|
|
||||
|
. = ALIGN(4); |
||||
|
_ebss = .; /* define a global symbol at bss end */ |
||||
|
__bss_end__ = _ebss; |
||||
|
} >RAM |
||||
|
|
||||
|
/* User_heap_stack section, used to check that there is enough RAM left */ |
||||
|
._user_heap_stack : |
||||
|
{ |
||||
|
. = ALIGN(4); |
||||
|
PROVIDE ( end = . ); |
||||
|
PROVIDE ( _end = . ); |
||||
|
. = . + _Min_Heap_Size; |
||||
|
. = . + _Min_Stack_Size; |
||||
|
. = ALIGN(4); |
||||
|
} >RAM |
||||
|
|
||||
|
/* Remove information from the standard libraries */ |
||||
|
/DISCARD/ : |
||||
|
{ |
||||
|
libc.a ( * ) |
||||
|
libm.a ( * ) |
||||
|
libgcc.a ( * ) |
||||
|
} |
||||
|
|
||||
|
.ARM.attributes 0 : { *(.ARM.attributes) } |
||||
|
} |
@ -0,0 +1,212 @@ |
|||||
|
/*
|
||||
|
******************************************************************************* |
||||
|
* 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. |
||||
|
******************************************************************************* |
||||
|
*/ |
||||
|
|
||||
|
#include "pins_arduino.h" |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
extern "C" { |
||||
|
#endif |
||||
|
|
||||
|
|
||||
|
const PinName digitalPin[] = { |
||||
|
PA_1, |
||||
|
PA_2, |
||||
|
PA_3, |
||||
|
PA_4, |
||||
|
PA_5, |
||||
|
PA_6, |
||||
|
PA_7, |
||||
|
PA_8, |
||||
|
PA_9, |
||||
|
PA_10, |
||||
|
PA_11, |
||||
|
PA_12, |
||||
|
PA_13, |
||||
|
PA_14, |
||||
|
PA_15, |
||||
|
PB_0, |
||||
|
PB_1, |
||||
|
PB_2, |
||||
|
PB_3, |
||||
|
PB_4, |
||||
|
PB_5, |
||||
|
PB_6, |
||||
|
PB_7, |
||||
|
PB_8, |
||||
|
PB_9, |
||||
|
PB_10, |
||||
|
PB_11, |
||||
|
PB_12, |
||||
|
PB_13, |
||||
|
PB_14, |
||||
|
PB_15, |
||||
|
PC_2, |
||||
|
PC_3, |
||||
|
PC_4, |
||||
|
PC_5, |
||||
|
PC_6, |
||||
|
PC_7, |
||||
|
PC_8, |
||||
|
PC_9, |
||||
|
PC_10, |
||||
|
PC_11, |
||||
|
PC_12, |
||||
|
PC_13, |
||||
|
PC_14, |
||||
|
PC_15, |
||||
|
PD_0, |
||||
|
PD_1, |
||||
|
PD_2, |
||||
|
PD_3, |
||||
|
PD_4, |
||||
|
PD_5, |
||||
|
PD_6, |
||||
|
PD_7, |
||||
|
PD_8, |
||||
|
PD_9, |
||||
|
PD_10, |
||||
|
PD_11, |
||||
|
PD_12, |
||||
|
PD_13, |
||||
|
PD_14, |
||||
|
PD_15, |
||||
|
PE_0, |
||||
|
PE_1, |
||||
|
PE_11, |
||||
|
PE_3, |
||||
|
PE_4, |
||||
|
PE_5, |
||||
|
PE_6, |
||||
|
PE_7, |
||||
|
PE_8, |
||||
|
PE_9, |
||||
|
PE_10, |
||||
|
PE_2, |
||||
|
PE_12, |
||||
|
PE_13, |
||||
|
PE_14, |
||||
|
PE_15, |
||||
|
PF_0, |
||||
|
PF_1, |
||||
|
PF_2, |
||||
|
PF_6, |
||||
|
PF_7, |
||||
|
PF_8, |
||||
|
PF_9, |
||||
|
PF_11, |
||||
|
PF_12, |
||||
|
PF_13, |
||||
|
PF_14, |
||||
|
PF_15, |
||||
|
PG_0, |
||||
|
PG_1, |
||||
|
PG_2, |
||||
|
PG_3, |
||||
|
PG_4, |
||||
|
PG_5, |
||||
|
PG_6, |
||||
|
PG_7, |
||||
|
PG_8, |
||||
|
PG_9, |
||||
|
PG_10, |
||||
|
PG_11, |
||||
|
PG_12, |
||||
|
PG_13, |
||||
|
PG_14, |
||||
|
PG_15, |
||||
|
PH_0, |
||||
|
PH_1, |
||||
|
PA_0, |
||||
|
PC_1, |
||||
|
PC_0, |
||||
|
PF_10, |
||||
|
PF_5, |
||||
|
PF_4, |
||||
|
PF_3, |
||||
|
}; |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
} |
||||
|
#endif |
||||
|
|
||||
|
// ----------------------------------------------------------------------------
|
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
extern "C" { |
||||
|
#endif |
||||
|
|
||||
|
/**
|
||||
|
* @brief System Clock Configuration |
||||
|
* @param None |
||||
|
* @retval None |
||||
|
*/ |
||||
|
WEAK void SystemClock_Config(void) |
||||
|
{ |
||||
|
|
||||
|
RCC_OscInitTypeDef RCC_OscInitStruct; |
||||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct; |
||||
|
|
||||
|
/**Configure the main internal regulator output voltage
|
||||
|
*/ |
||||
|
__HAL_RCC_PWR_CLK_ENABLE(); |
||||
|
|
||||
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); |
||||
|
|
||||
|
/**Initializes the CPU, AHB and APB busses clocks
|
||||
|
*/ |
||||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; |
||||
|
RCC_OscInitStruct.HSEState = RCC_HSE_ON; |
||||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; |
||||
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; |
||||
|
RCC_OscInitStruct.PLL.PLLM = 8; |
||||
|
RCC_OscInitStruct.PLL.PLLN = 336; |
||||
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; |
||||
|
RCC_OscInitStruct.PLL.PLLQ = 7; |
||||
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { |
||||
|
_Error_Handler(__FILE__, __LINE__); |
||||
|
} |
||||
|
|
||||
|
/**Initializes the CPU, AHB and APB busses clocks
|
||||
|
*/ |
||||
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK |
||||
|
| RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; |
||||
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; |
||||
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; |
||||
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4; |
||||
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2; |
||||
|
|
||||
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK) { |
||||
|
_Error_Handler(__FILE__, __LINE__); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
} |
||||
|
#endif |
@ -0,0 +1,237 @@ |
|||||
|
/*
|
||||
|
******************************************************************************* |
||||
|
* 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. |
||||
|
******************************************************************************* |
||||
|
*/ |
||||
|
#pragma once |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
extern "C" { |
||||
|
#endif // __cplusplus
|
||||
|
|
||||
|
/*----------------------------------------------------------------------------
|
||||
|
* Pins |
||||
|
*----------------------------------------------------------------------------*/ |
||||
|
|
||||
|
|
||||
|
#define PA1 0 |
||||
|
#define PA2 1 |
||||
|
#define PA3 2 |
||||
|
#define PA4 3 |
||||
|
#define PA5 4 |
||||
|
#define PA6 5 |
||||
|
#define PA7 6 |
||||
|
#define PA8 7 |
||||
|
#define PA9 8 |
||||
|
#define PA10 9 |
||||
|
#define PA11 10 |
||||
|
#define PA12 11 |
||||
|
#define PA13 12 |
||||
|
#define PA14 13 |
||||
|
#define PA15 14 |
||||
|
#define PB0 15 |
||||
|
#define PB1 16 |
||||
|
#define PB2 17 |
||||
|
#define PB3 18 |
||||
|
#define PB4 19 |
||||
|
#define PB5 20 |
||||
|
#define PB6 21 |
||||
|
#define PB7 22 |
||||
|
#define PB8 23 |
||||
|
#define PB9 24 |
||||
|
#define PB10 25 |
||||
|
#define PB11 26 |
||||
|
#define PB12 27 |
||||
|
#define PB13 28 |
||||
|
#define PB14 29 |
||||
|
#define PB15 30 |
||||
|
#define PC2 31 |
||||
|
#define PC3 32 |
||||
|
#define PC4 33 |
||||
|
#define PC5 34 |
||||
|
#define PC6 35 |
||||
|
#define PC7 36 |
||||
|
#define PC8 37 |
||||
|
#define PC9 38 |
||||
|
#define PC10 39 |
||||
|
#define PC11 40 |
||||
|
#define PC12 41 |
||||
|
#define PC13 42 |
||||
|
#define PC14 43 |
||||
|
#define PC15 44 |
||||
|
#define PD0 45 |
||||
|
#define PD1 46 |
||||
|
#define PD2 47 |
||||
|
#define PD3 48 |
||||
|
#define PD4 49 |
||||
|
#define PD5 50 |
||||
|
#define PD6 51 |
||||
|
#define PD7 52 |
||||
|
#define PD8 53 |
||||
|
#define PD9 54 |
||||
|
#define PD10 55 |
||||
|
#define PD11 56 |
||||
|
#define PD12 57 |
||||
|
#define PD13 58 |
||||
|
#define PD14 59 |
||||
|
#define PD15 60 |
||||
|
#define PE0 61 |
||||
|
#define PE1 62 |
||||
|
#define PE11 63 |
||||
|
#define PE3 64 |
||||
|
#define PE4 65 |
||||
|
#define PE5 66 |
||||
|
#define PE6 67 |
||||
|
#define PE7 68 |
||||
|
#define PE8 69 |
||||
|
#define PE9 70 |
||||
|
#define PE10 71 |
||||
|
#define PE2 72 |
||||
|
#define PE12 73 |
||||
|
#define PE13 74 |
||||
|
#define PE14 75 |
||||
|
#define PE15 76 |
||||
|
#define PF0 77 |
||||
|
#define PF1 78 |
||||
|
#define PF2 79 |
||||
|
#define PF6 80 |
||||
|
#define PF7 81 |
||||
|
#define PF8 82 |
||||
|
#define PF9 83 |
||||
|
#define PF11 84 |
||||
|
#define PF12 85 |
||||
|
#define PF13 86 |
||||
|
#define PF14 87 |
||||
|
#define PF15 88 |
||||
|
#define PG0 89 |
||||
|
#define PG1 90 |
||||
|
#define PG2 91 |
||||
|
#define PG3 92 |
||||
|
#define PG4 93 |
||||
|
#define PG5 94 |
||||
|
#define PG6 95 |
||||
|
#define PG7 96 |
||||
|
#define PG8 97 |
||||
|
#define PG9 98 |
||||
|
#define PG10 99 |
||||
|
#define PG11 100 |
||||
|
#define PG12 101 |
||||
|
#define PG13 102 |
||||
|
#define PG14 103 |
||||
|
#define PG15 104 |
||||
|
#define PH0 105 |
||||
|
#define PH1 106 |
||||
|
#define PA0 107 |
||||
|
#define PC1 108 |
||||
|
#define PC0 109 |
||||
|
#define PF10 110 |
||||
|
#define PF5 111 |
||||
|
#define PF4 112 |
||||
|
#define PF3 113 |
||||
|
|
||||
|
// This must be a literal
|
||||
|
#define NUM_DIGITAL_PINS 114 |
||||
|
// This must be a literal with a value less than or equal to MAX_ANALOG_INPUTS
|
||||
|
#define NUM_ANALOG_INPUTS 7 |
||||
|
#define NUM_ANALOG_FIRST 107 |
||||
|
|
||||
|
|
||||
|
// Below SPI and I2C definitions already done in the core
|
||||
|
// Could be redefined here if differs from the default one
|
||||
|
// SPI Definitions
|
||||
|
#define PIN_SPI_SS PA4 |
||||
|
#define PIN_SPI_MOSI PA7 |
||||
|
#define PIN_SPI_MISO PA6 |
||||
|
#define PIN_SPI_SCK PA5 |
||||
|
|
||||
|
// I2C Definitions
|
||||
|
#define PIN_WIRE_SDA PF0 |
||||
|
#define PIN_WIRE_SCL PF1 |
||||
|
|
||||
|
// Timer Definitions
|
||||
|
// Do not use timer used by PWM pins when possible. See PinMap_PWM in PeripheralPins.c
|
||||
|
#define TIMER_TONE TIM2 |
||||
|
#define TIMER_SERVO TIM5 |
||||
|
#define TIMER_SERIAL TIM7 |
||||
|
|
||||
|
// UART Definitions
|
||||
|
#define ENABLE_HWSERIAL1 |
||||
|
#define ENABLE_HWSERIAL2 |
||||
|
// Define here Serial instance number to map on Serial generic name
|
||||
|
//#define SERIAL_UART_INSTANCE 1 //1 for Serial = Serial1 (USART1)
|
||||
|
// DEBUG_UART could be redefined to print on another instance than 'Serial'
|
||||
|
//#define DEBUG_UART ((USART_TypeDef *) U(S)ARTX) // ex: USART3
|
||||
|
// DEBUG_UART baudrate, default: 9600 if not defined
|
||||
|
//#define DEBUG_UART_BAUDRATE x
|
||||
|
// DEBUG_UART Tx pin name, default: the first one found in PinMap_UART_TX for DEBUG_UART
|
||||
|
//#define DEBUG_PINNAME_TX PX_n // PinName used for TX
|
||||
|
|
||||
|
// Default pin used for 'Serial' instance (ex: ST-Link)
|
||||
|
// Mandatory for Firmata
|
||||
|
#define PIN_SERIAL_RX PA10 |
||||
|
#define PIN_SERIAL_TX PA9 |
||||
|
|
||||
|
// Optional PIN_SERIALn_RX and PIN_SERIALn_TX where 'n' is the U(S)ART number
|
||||
|
// Used when user instantiate a hardware Serial using its peripheral name.
|
||||
|
// Example: HardwareSerial mySerial(USART3);
|
||||
|
// will use PIN_SERIAL3_RX and PIN_SERIAL3_TX if defined.
|
||||
|
#define PIN_SERIAL1_RX PA10 |
||||
|
#define PIN_SERIAL1_TX PA9 |
||||
|
#define PIN_SERIAL2_RX PA3 |
||||
|
#define PIN_SERIAL2_TX PA2 |
||||
|
|
||||
|
/* HAL configuration */ |
||||
|
#define HSE_VALUE 8000000U |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
} // extern "C"
|
||||
|
#endif |
||||
|
/*----------------------------------------------------------------------------
|
||||
|
* Arduino objects - C++ only |
||||
|
*----------------------------------------------------------------------------*/ |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
// These serial port names are intended to allow libraries and architecture-neutral
|
||||
|
// sketches to automatically default to the correct port name for a particular type
|
||||
|
// of use. For example, a GPS module would normally connect to SERIAL_PORT_HARDWARE_OPEN,
|
||||
|
// the first hardware serial port whose RX/TX pins are not dedicated to another use.
|
||||
|
//
|
||||
|
// SERIAL_PORT_MONITOR Port which normally prints to the Arduino Serial Monitor
|
||||
|
//
|
||||
|
// SERIAL_PORT_USBVIRTUAL Port which is USB virtual serial
|
||||
|
//
|
||||
|
// SERIAL_PORT_LINUXBRIDGE Port which connects to a Linux system via Bridge library
|
||||
|
//
|
||||
|
// SERIAL_PORT_HARDWARE Hardware serial port, physical RX & TX pins.
|
||||
|
//
|
||||
|
// SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX
|
||||
|
// pins are NOT connected to anything by default.
|
||||
|
#define SERIAL_PORT_MONITOR Serial |
||||
|
#define SERIAL_PORT_HARDWARE Serial1 |
||||
|
#define SERIAL_PORT_HARDWARE_OPEN Serial2 |
||||
|
#endif |
||||
|
|
Loading…
Reference in new issue