H7 compilation #2284

This commit is contained in:
rusefillc 2021-02-05 23:37:18 -05:00
parent c135899442
commit e4a85acb3b
5 changed files with 16 additions and 6 deletions

View File

@ -210,7 +210,7 @@
* @note Disabling this option saves both code and data space.
*/
#if !defined(PAL_USE_CALLBACKS) || defined(__DOXYGEN__)
#define PAL_USE_CALLBACKS FALSE
#define PAL_USE_CALLBACKS TRUE
#endif
/**

View File

@ -8,6 +8,9 @@
#pragma once
float getVehicleCanSpeed(void);
void processCanRxVss(const CANRxFrame& frame, efitick_t nowNt);
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

View File

@ -1,5 +1,5 @@
/**
* @file mpu_util.h
* @file device_mpu_util.h
*
* @date Jul 27, 2014
* @author Andrey Belomutskiy, (c) 2012-2020

View File

@ -1,5 +1,5 @@
/**
* @file mpu_util.h
* @file device_mpu_util.h
*
* @date Jul 27, 2014
* @author Andrey Belomutskiy, (c) 2012-2020

View File

@ -1,6 +1,13 @@
/**
* @file device_mpu_util.h
*
* @date Feb 5, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/
#pragma once
#include "stm32h7xx_hal_flash_ex.h"
// todo SPI!
// todo SPI! #2284