Merge pull request #405 from andreika-git/STM32F407xx-define
STM32F407xx define (and small clean-up)
This commit is contained in:
commit
ef7d56a38d
|
@ -13,8 +13,8 @@ rem magic once needed
|
|||
call update_version.bat
|
||||
|
||||
echo Starting compilation
|
||||
rem the important piece
|
||||
make
|
||||
rem the important piece (pass external args if needed)
|
||||
make %1 %2 %3
|
||||
|
||||
rem cd build
|
||||
rem if not exist rusefi.hex echo "compilation failed"
|
||||
|
|
|
@ -57,7 +57,9 @@
|
|||
*
|
||||
* See also STM32F4xx_MCUCONF is defined in mcuconf.h
|
||||
*/
|
||||
#ifndef STM32F407xx
|
||||
#define STM32F407xx
|
||||
#endif
|
||||
|
||||
/*
|
||||
* IO pins assignments.
|
||||
|
|
|
@ -3,3 +3,6 @@ BOARDSRC = $(PROJECT_DIR)/config/boards/ST_STM32F4/board.c
|
|||
|
||||
# Required include directories
|
||||
BOARDINC = $(PROJECT_DIR)/config/boards/ST_STM32F4
|
||||
|
||||
# MCU defines
|
||||
DDEFS += -DSTM32F407xx
|
||||
|
|
|
@ -263,10 +263,6 @@ void prepareVoidConfiguration(engine_configuration_s *activeConfiguration) {
|
|||
engineConfiguration->cj125ua = EFI_ADC_NONE;
|
||||
engineConfiguration->cj125ur = EFI_ADC_NONE;
|
||||
|
||||
boardConfiguration->idle.stepperDirectionPin = GPIO_UNASSIGNED;
|
||||
boardConfiguration->idle.stepperStepPin = GPIO_UNASSIGNED;
|
||||
engineConfiguration->stepperEnablePin = GPIO_UNASSIGNED;
|
||||
|
||||
boardConfiguration->idle.stepperDirectionPin = GPIO_UNASSIGNED;
|
||||
boardConfiguration->idle.stepperStepPin = GPIO_UNASSIGNED;
|
||||
engineConfiguration->stepperEnablePin = GPIO_UNASSIGNED;
|
||||
|
|
|
@ -93,8 +93,9 @@
|
|||
*/
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#define STM32F407xx
|
||||
#ifdef STM32F407xx
|
||||
#define STM32F40_41xxx
|
||||
#endif
|
||||
#define assert_param(expr) ((void)0)
|
||||
|
||||
//#include "stm32f4xx_hal.h"
|
||||
|
|
|
@ -80,8 +80,9 @@
|
|||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
|
||||
#define STM32F407xx
|
||||
#ifdef STM32F407xx
|
||||
#define STM32F40_41xxx
|
||||
#endif
|
||||
#define assert_param(expr) ((void)0)
|
||||
|
||||
#define HAL_FLASH_MODULE_ENABLED
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// This file was generated by Version2Header
|
||||
// Sat Apr 22 01:25:51 EEST 2017
|
||||
// Mon May 01 22:16:55 EEST 2017
|
||||
#ifndef VCS_VERSION
|
||||
#define VCS_VERSION "13886"
|
||||
#define VCS_VERSION "13950"
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue