Skip to content

Commit

Permalink
Add Nucleo-F303RE support
Browse files Browse the repository at this point in the history
  • Loading branch information
ezshinoda committed Oct 17, 2019
1 parent 429f684 commit cb1bdfe
Show file tree
Hide file tree
Showing 7 changed files with 305 additions and 0 deletions.
1 change: 1 addition & 0 deletions make/targets_list.mk
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ UNSUPPORTED_TARGETS := \
MOTOLAB \
MULTIFLITEPICO \
NUCLEOF103RG \
NUCLEOF303RE \
OMNIBUS \
RACEBASE \
RCEXPLORERF3 \
Expand Down
28 changes: 28 additions & 0 deletions src/link/stm32_flash_f303_512k.ld
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
*****************************************************************************
**
** File : stm32_flash.ld
**
** Abstract : Linker script for STM32F303xD/E Device
** FLASH 512KByte
** SRAM 64KByte
** CCM 16KByte
**
*****************************************************************************
*/

/* Specify the memory areas. */
MEMORY
{
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 508K
FLASH_CONFIG (r) : ORIGIN = 0x0807F000, LENGTH = 4K

RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 64K
CCM (xrw) : ORIGIN = 0x10000000, LENGTH = 16K
MEMORY_B1 (rx) : ORIGIN = 0x60000000, LENGTH = 0K
}

REGION_ALIAS("STACKRAM", CCM)
REGION_ALIAS("FASTRAM", CCM)

INCLUDE "stm32_flash.ld"
24 changes: 24 additions & 0 deletions src/main/target/NUCLEOF303RE/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
NUCLEOF303RE target for use with ST Nucleo-F303RE.

- VCP is not working with STM32F303RE chip, so UART5 on PD2(RX) and PC12(TX), which is not available on CC package are reserved for configurator MSP connection. UART4, which is also not available on CC package may be configured for configurator MSP connection.

- Unfortunately, UART5 (or UART4) are not handled by embedded boot loader, so flashing through these ports is not possible.

- If PA11(USB-DM) and PA12(USB-DP) are properly wired, USB DFU can be used to flash the board.

- Target definition itself is a modified copy of SPRACINGF3EVO.

It is easy to build other targets to run on Nucleo-F303RE:

1. Add FLASH_SIZE line to target.mk (This will select stm32_flash_f303_512k.ld as linker script)
FLASH_SIZE = 512

2. Modify target.h to define extra pins used for UART5 if necessary.
#define TARGET_IO_PORTC 0xffff
#define TARGET_IO_PORTD BIT(2)

3. Modify target.h to define target configuration if UART5 should be used as configurator MSP connection.
#define USE_TARGET_CONFIG

And then add UART5 as MSP in config.c (see config.c for NUCLEOF303RE target)

39 changes: 39 additions & 0 deletions src/main/target/NUCLEOF303RE/config.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* This file is part of Cleanflight and Betaflight.
*
* Cleanflight and Betaflight are free software. You can redistribute
* this software and/or modify this software 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.
*
* Cleanflight and Betaflight are distributed in the hope that they
* 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 software.
*
* If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdint.h>

#include "platform.h"

#ifdef USE_TARGET_CONFIG

#include "io/serial.h"

#include "config_helper.h"

static targetSerialPortFunction_t targetSerialPortFunction[] = {
{ SERIAL_PORT_UART5, FUNCTION_MSP },
};

void targetConfiguration(void)
{
targetSerialPortFunctionConfig(targetSerialPortFunction, ARRAYLEN(targetSerialPortFunction));
}
#endif
44 changes: 44 additions & 0 deletions src/main/target/NUCLEOF303RE/target.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* This file is part of Cleanflight and Betaflight.
*
* Cleanflight and Betaflight are free software. You can redistribute
* this software and/or modify this software 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.
*
* Cleanflight and Betaflight are distributed in the hope that they
* 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 software.
*
* If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdint.h>

#include "platform.h"
#include "drivers/io.h"

#include "drivers/timer.h"
#include "drivers/timer_def.h"
#include "drivers/dma.h"

const timerHardware_t timerHardware[USABLE_TIMER_CHANNEL_COUNT] = {
// PPM / UART2 RX
DEF_TIM(TIM8, CH1, PA15, TIM_USE_PPM, 0), // PPM
DEF_TIM(TIM2, CH1, PA0, TIM_USE_MOTOR, 0), // PWM1 [TIM2_CH1 (D1_CH5)]
DEF_TIM(TIM2, CH2, PA1, TIM_USE_MOTOR, 0), // PWM2 [TIM2_CH2 (D1_CH7)] [TIM15_CH1N (D1_CH5)]
DEF_TIM(TIM2, CH3, PA2, TIM_USE_MOTOR, 0), // PWM3 [TIM2_CH3 (D1_CH1)] [TIM15_CH1 (D1_CH5)]
DEF_TIM(TIM15, CH2, PA3, TIM_USE_MOTOR, 0), // PWM4 [TIM2_CH4 (D1_CH7)]
DEF_TIM(TIM16, CH1, PA6, TIM_USE_MOTOR, 0), // PWM5 [TIM16_CH1 (D1_CH3 / D1_CH6)] [TIM3_CH1 (D1_CH6)]
DEF_TIM(TIM3, CH2, PA7, TIM_USE_MOTOR, 0), // PWM6
DEF_TIM(TIM3, CH3, PB0, TIM_USE_MOTOR, 0), // PWM7
DEF_TIM(TIM3, CH4, PB1, TIM_USE_MOTOR, 0), // PWM8
DEF_TIM(TIM2, CH3, PB10, TIM_USE_MOTOR, 0), // RC_CH4 - PB10 - *TIM2_CH3, UART3_TX (AF7)
DEF_TIM(TIM2, CH4, PB11, TIM_USE_MOTOR, 0), // RC_CH3 - PB11 - *TIM2_CH4, UART3_RX (AF7)
DEF_TIM(TIM1, CH1, PA8, TIM_USE_LED | TIM_USE_TRANSPONDER, 0), // LED_STRIP / TRANSPONDER
};
153 changes: 153 additions & 0 deletions src/main/target/NUCLEOF303RE/target.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
/*
* This file is part of Cleanflight and Betaflight.
*
* Cleanflight and Betaflight are free software. You can redistribute
* this software and/or modify this software 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.
*
* Cleanflight and Betaflight are distributed in the hope that they
* 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 software.
*
* If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#define TARGET_BOARD_IDENTIFIER "F3RE"
#define USE_TARGET_CONFIG

//#define LED0_PIN PB8
#define LED0_PIN PA5

#define USE_BEEPER
#define BEEPER_PIN PC15
#define BEEPER_INVERTED

#define USE_EXTI
#define USE_GYRO_EXTI
#define GYRO_1_EXTI_PIN PC13
#define USE_MPU_DATA_READY_SIGNAL
#define ENSURE_MPU_DATA_READY_IS_LOW

#define USE_MAG_DATA_READY_SIGNAL
#define ENSURE_MAG_DATA_READY_IS_HIGH

#define USE_GYRO
#define USE_GYRO_SPI_MPU6500
#define USE_FAKE_GYRO

#define USE_ACC
#define USE_ACC_SPI_MPU6500
#define USE_FAKE_ACC

#define GYRO_1_ALIGN CW180_DEG

#define USE_BARO
#define USE_BARO_BMP280

#define USE_MAG
#define USE_MAG_AK8963
//#define USE_MAG_HMC5883 // External

#define MAG_AK8963_ALIGN CW270_DEG_FLIP

//#define USE_RANGEFINDER
//#define USE_RANGEFINDER_HCSR04

//#define USE_VCP // Not working (yet)
#define USE_UART1
#define USE_UART2
#define USE_UART3
#define USE_UART4 // Use UART4 or UART5 for configurator MSP instead of non-working VCP
#define USE_UART5 // Use UART5 or UART5 for configurator MSP instead of non-working VCP
#define USE_SOFTSERIAL1
#define USE_SOFTSERIAL2

#define SOFTSERIAL1_RX_PIN PA6 // PWM 5
#define SOFTSERIAL1_TX_PIN PA7 // PWM 6

#define SOFTSERIAL2_RX_PIN PB0 // PWM 7
#define SOFTSERIAL2_TX_PIN PB1 // PWM 8

#define SERIAL_PORT_COUNT 7

#define USE_ESCSERIAL
#define ESCSERIAL_TIMER_TX_PIN PA15 // (HARDARE=0,PPM)

#define UART1_TX_PIN PA9
#define UART1_RX_PIN PA10

#define UART2_TX_PIN PA14 // PA14 / SWCLK
#define UART2_RX_PIN PA15

#define UART3_TX_PIN PB10 // PB10 (AF7)
#define UART3_RX_PIN PB11 // PB11 (AF7)

#define UART5_TX_PIN PC12
#define UART5_RX_PIN PD2

#define USE_I2C
#define USE_I2C_DEVICE_1
#define I2C_DEVICE (I2CDEV_1)

#define USE_SPI
#define USE_SPI_DEVICE_1 // PB9,3,4,5 on AF5 SPI1 (MPU)
#define USE_SPI_DEVICE_2 // PB12,13,14,15 on AF5 SPI2 (SDCard)

#define SPI1_NSS_PIN PB9
#define SPI1_SCK_PIN PB3
#define SPI1_MISO_PIN PB4
#define SPI1_MOSI_PIN PB5

#define SPI2_NSS_PIN PB12
#define SPI2_SCK_PIN PB13
#define SPI2_MISO_PIN PB14
#define SPI2_MOSI_PIN PB15

#define USE_SDCARD
#define USE_SDCARD_SPI
#define SDCARD_DETECT_INVERTED
#define SDCARD_DETECT_PIN PC14
#define SDCARD_SPI_INSTANCE SPI2
#define SDCARD_SPI_CS_PIN SPI2_NSS_PIN

// Note, this is the same DMA channel as UART1_RX. Luckily we don't use DMA for USART Rx.
#define SDCARD_DMA_CHANNEL_TX DMA1_Channel5

#define GYRO_1_CS_PIN PB9
#define GYRO_1_SPI_INSTANCE SPI1

#define DEFAULT_VOLTAGE_METER_SOURCE VOLTAGE_METER_ADC

#define USE_ADC
#define ADC_INSTANCE ADC2
#define RSSI_ADC_PIN PB2
#define VBAT_ADC_PIN PA4
//#define CURRENT_METER_ADC_PIN PA5

#define USE_OSD
#define USE_OSD_OVER_MSP_DISPLAYPORT
#define USE_MSP_CURRENT_METER

#define USE_TRANSPONDER

#define ENABLE_BLACKBOX_LOGGING_ON_SDCARD_BY_DEFAULT

#define DEFAULT_RX_FEATURE FEATURE_RX_PPM
#define DEFAULT_FEATURES (FEATURE_TRANSPONDER | FEATURE_RSSI_ADC | FEATURE_TELEMETRY)

// IO - STM32F303RE in 64pin package
#define TARGET_IO_PORTA 0xffff
#define TARGET_IO_PORTB 0xffff
#define TARGET_IO_PORTC 0xffff
#define TARGET_IO_PORTD BIT(2)

#define USABLE_TIMER_CHANNEL_COUNT 12 // PPM, 8 PWM, UART3 RX/TX, LED Strip
#define USED_TIMERS (TIM_N(1) | TIM_N(2) | TIM_N(3) | TIM_N(8) | TIM_N(15) | TIM_N(16))
16 changes: 16 additions & 0 deletions src/main/target/NUCLEOF303RE/target.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
F3_TARGETS += $(TARGET)

FEATURES = VCP SDCARD_SPI

FEATURE_CUT_LEVEL = 0

FLASH_SIZE = 512

TARGET_SRC = \
drivers/accgyro/accgyro_fake.c \
drivers/accgyro/accgyro_mpu.c \
drivers/accgyro/accgyro_mpu6500.c \
drivers/accgyro/accgyro_spi_mpu6500.c \
drivers/barometer/barometer_bmp280.c \
drivers/compass/compass_ak8963.c

0 comments on commit cb1bdfe

Please sign in to comment.