mirror of https://github.com/rusefi/rusefi-1.git
H7 compilation #2284
This commit is contained in:
parent
c135899442
commit
e4a85acb3b
|
@ -210,7 +210,7 @@
|
||||||
* @note Disabling this option saves both code and data space.
|
* @note Disabling this option saves both code and data space.
|
||||||
*/
|
*/
|
||||||
#if !defined(PAL_USE_CALLBACKS) || defined(__DOXYGEN__)
|
#if !defined(PAL_USE_CALLBACKS) || defined(__DOXYGEN__)
|
||||||
#define PAL_USE_CALLBACKS FALSE
|
#define PAL_USE_CALLBACKS TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
float getVehicleCanSpeed(void);
|
float getVehicleCanSpeed(void);
|
||||||
void processCanRxVss(const CANRxFrame& frame, efitick_t nowNt);
|
|
||||||
void initCanVssSupport(Logging *logger_ptr);
|
void initCanVssSupport(Logging *logger_ptr);
|
||||||
void setCanVss(int type);
|
void setCanVss(int type);
|
||||||
|
|
||||||
|
#if EFI_CAN_SUPPORT
|
||||||
|
void processCanRxVss(const CANRxFrame& frame, efitick_t nowNt);
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* @file mpu_util.h
|
* @file device_mpu_util.h
|
||||||
*
|
*
|
||||||
* @date Jul 27, 2014
|
* @date Jul 27, 2014
|
||||||
* @author Andrey Belomutskiy, (c) 2012-2020
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* @file mpu_util.h
|
* @file device_mpu_util.h
|
||||||
*
|
*
|
||||||
* @date Jul 27, 2014
|
* @date Jul 27, 2014
|
||||||
* @author Andrey Belomutskiy, (c) 2012-2020
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
|
/**
|
||||||
|
* @file device_mpu_util.h
|
||||||
|
*
|
||||||
|
* @date Feb 5, 2021
|
||||||
|
* @author Andrey Belomutskiy, (c) 2012-2021
|
||||||
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "stm32h7xx_hal_flash_ex.h"
|
#include "stm32h7xx_hal_flash_ex.h"
|
||||||
|
|
||||||
|
|
||||||
// todo SPI!
|
// todo SPI! #2284
|
||||||
|
|
Loading…
Reference in New Issue