Blackbox dataflash: Experimental CC3D support
This commit is contained in:
parent
aae9141120
commit
57fcde05a3
2
Makefile
2
Makefile
|
@ -429,6 +429,8 @@ CC3D_SRC = \
|
||||||
drivers/system_stm32f10x.c \
|
drivers/system_stm32f10x.c \
|
||||||
drivers/timer.c \
|
drivers/timer.c \
|
||||||
drivers/timer_stm32f10x.c \
|
drivers/timer_stm32f10x.c \
|
||||||
|
drivers/flash_m25p16.c \
|
||||||
|
io/flashfs.c \
|
||||||
$(HIGHEND_SRC) \
|
$(HIGHEND_SRC) \
|
||||||
$(COMMON_SRC) \
|
$(COMMON_SRC) \
|
||||||
$(VCP_SRC)
|
$(VCP_SRC)
|
||||||
|
|
|
@ -370,7 +370,7 @@ void init(void)
|
||||||
m25p16_init();
|
m25p16_init();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef SPRACINGF3
|
#if defined(SPRACINGF3) || defined(CC3D)
|
||||||
m25p16_init();
|
m25p16_init();
|
||||||
#endif
|
#endif
|
||||||
flashfsInit();
|
flashfsInit();
|
||||||
|
|
|
@ -35,6 +35,13 @@
|
||||||
#define MPU6000_CS_PIN GPIO_Pin_4
|
#define MPU6000_CS_PIN GPIO_Pin_4
|
||||||
#define MPU6000_SPI_INSTANCE SPI1
|
#define MPU6000_SPI_INSTANCE SPI1
|
||||||
|
|
||||||
|
#define M25P16_CS_GPIO GPIOB
|
||||||
|
#define M25P16_CS_PIN GPIO_Pin_12
|
||||||
|
#define M25P16_SPI_INSTANCE SPI2
|
||||||
|
|
||||||
|
#define USE_FLASHFS
|
||||||
|
#define USE_FLASH_M25P16
|
||||||
|
|
||||||
#define USABLE_TIMER_CHANNEL_COUNT 12
|
#define USABLE_TIMER_CHANNEL_COUNT 12
|
||||||
|
|
||||||
#define GYRO
|
#define GYRO
|
||||||
|
@ -97,7 +104,6 @@
|
||||||
#define RSSI_ADC_GPIO_PIN GPIO_Pin_1
|
#define RSSI_ADC_GPIO_PIN GPIO_Pin_1
|
||||||
#define RSSI_ADC_CHANNEL ADC_Channel_1
|
#define RSSI_ADC_CHANNEL ADC_Channel_1
|
||||||
|
|
||||||
|
|
||||||
#define GPS
|
#define GPS
|
||||||
#define LED_STRIP
|
#define LED_STRIP
|
||||||
#define LED_STRIP_TIMER TIM3
|
#define LED_STRIP_TIMER TIM3
|
||||||
|
|
Loading…
Reference in New Issue